You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 line
328B

  1. using Microsoft.Extensions.Logging;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace HealthMonitor.WebApi.DbLog
  7. {
  8. public class EfCoreLoggerFactory : LoggerFactory
  9. {
  10. public EfCoreLoggerFactory(IEnumerable<ILoggerProvider> providers)
  11. : base(providers) { }
  12. }
  13. }