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.

13 lines
325 B

1 year ago
  1. using Microsoft.Extensions.Logging;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Shentun.Utilities
  6. {
  7. public class EFLoggerProvider : ILoggerProvider
  8. {
  9. public ILogger CreateLogger(string categoryName) => new EFLogger(categoryName);
  10. public void Dispose() { }
  11. }
  12. }