Exemplo n.º 1
0
        internal static JsnlogConfiguration GetJsnlogConfigurationWithoutWebConfig()
        {
            // If there is no configuration, return the default configuration

            if (_jsnlogConfiguration == null)
            {
                return(new JsnlogConfiguration());
            }

            _jsnlogConfiguration.Validate();

            return(_jsnlogConfiguration);
        }
Exemplo n.º 2
0
        internal static JsnlogConfiguration GetJsnlogConfigurationWithoutWebConfig()
        {
            // If there is no configuration, return the default configuration.
            // In that case, assume the user is after the minimal configuration, where the JSNLog middleware
            // automatically inserts the jsnlog script tag and config js code in all html responses from the server.

            if (_jsnlogConfiguration == null)
            {
                return(new JsnlogConfiguration()
                {
                    insertJsnlogInHtmlResponses = true,
                    productionLibraryPath = SiteConstants.CdnJsDownloadUrl
                });
            }

            _jsnlogConfiguration.Validate();

            return(_jsnlogConfiguration);
        }