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.

18 rindas
385B

  1. using Microsoft.Extensions.Logging;
  2. using HealthMonitor.Core.DbLog;
  3. namespace HealthMonitor.WebApi.DbLog
  4. {
  5. public class EfCoreLogProvider : IEfCoreLoggerProvider
  6. {
  7. public static LogLevel LogThisAndAbout { get; set; } = LogLevel.Information;
  8. public ILogger CreateLogger(string categoryName)
  9. {
  10. return new EfCoreLogger(categoryName);
  11. }
  12. public void Dispose() { }
  13. }
  14. }