1
0
mirror of synced 2025-12-22 03:12:45 -05:00
Files
core/release-notes/3.0/api-diff/Asp.Net/3.0.0_Microsoft.Extensions.Logging.Debug.md
Rich Lander f82833aa44 Update dotnetcli domain -- 2.x and 3.x (#9687)
* Fix linter errors

* Fix linter errors

* Fix linter errors

* Fix linter errors

* Fix linter errors

* Fix linter errors

* Fix linter errors

* Fix linter errors

* Fix linter errors

* Update linter errors
2025-01-13 09:39:23 -08:00

1.1 KiB

Microsoft.Extensions.Logging.Debug

 {
     namespace Microsoft.Extensions.Logging {
         public static class DebugLoggerFactoryExtensions {
-            public static ILoggerFactory AddDebug(this ILoggerFactory factory);

-            public static ILoggerFactory AddDebug(this ILoggerFactory factory, LogLevel minLevel);

-            public static ILoggerFactory AddDebug(this ILoggerFactory factory, Func<string, LogLevel, bool> filter);

         }
     }
     namespace Microsoft.Extensions.Logging.Debug {
-        public class DebugLogger : ILogger {
 {
-            public DebugLogger(string name);

-            public DebugLogger(string name, Func<string, LogLevel, bool> filter);

-            public IDisposable BeginScope<TState>(TState state);

-            public bool IsEnabled(LogLevel logLevel);

-            public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter);

-        }
         public class DebugLoggerProvider : IDisposable, ILoggerProvider {
-            public DebugLoggerProvider(Func<string, LogLevel, bool> filter);

         }
     }
 }