Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- using Microsoft.Extensions.Logging;
- using HealthMonitor.Core.DbLog;
-
- namespace HealthMonitor.WebApi.DbLog
- {
- public class EfCoreLogProvider : IEfCoreLoggerProvider
- {
- public static LogLevel LogThisAndAbout { get; set; } = LogLevel.Information;
-
- public ILogger CreateLogger(string categoryName)
- {
- return new EfCoreLogger(categoryName);
- }
-
- public void Dispose() { }
- }
- }
|