コード例 #1
0
ファイル: Logger.cs プロジェクト: bootzin/BootEngine
 public static void CoreInfo(object message)
 {
     if (message is string)
     {
         CoreLogger.Information(message as string);
     }
     else
     {
         CoreLogger.Information(message.ToString());
     }
 }