public static void UseNLog(this IMutableEngineConfiguration config, string loggerName)
 {
     config.RegisterLogService(() => new NLogEngineLogger(loggerName));
 }
Exemplo n.º 2
0
 public static void UseNullLogger(this IMutableEngineConfiguration mutableConfig)
 {
     mutableConfig.RegisterLogService(() => new NullLogger());
 }