public AWSLogger()

in src/AWS.Logger.AspNetCore/AWSLogger.cs [73:82]


        public AWSLogger(string categoryName, IAWSLoggerCore core, Func<string, LogLevel, bool> filter, Func<LogLevel, object, Exception, string> customFormatter = null)
        {
            _categoryName = categoryName;
            _core = core;
            _filter = filter;
            _customFormatter = customFormatter;

            // This is done in the constructor to ensure the logic in the setter is run during initialization.
            this.IncludeScopes = Constants.IncludeScopesDefault;
        }