Example #1
0
 public static void SetFactory(InbuiltLoggerFactory factory)
 {
     if (factory == null)
     {
         throw new ArgumentNullException(nameof(factory));
     }
     _factory = factory;
 }
Example #2
0
 static InbuiltLog()
 {
     _factory = new InbuiltNullLoggerFactory();
 }