Exemplo n.º 1
0
 public static void LogInfo(this ILogger logger, string info)
 {
     logger.Log(LogRecord.CreateInfo(info, new LogRecordDataValue[0]));
 }
Exemplo n.º 2
0
 public static void LogWarning(this ILogger logger, string warning)
 {
     logger.Log(LogRecord.CreateWarning(warning, new LogRecordDataValue[0]));
 }
Exemplo n.º 3
0
 public static void LogError(this ILogger logger, string error)
 {
     logger.Log(LogRecord.CreateError(error, new LogRecordDataValue[0]));
 }