예제 #1
0
파일: Utility.cs 프로젝트: Kizby/Limber
 public static void MaybeLog(string message, [CallerFilePath] string filePath = "", [CallerLineNumber] int lineNumber = 0)
 {
     if (debug)
     {
         MetricsManager.LogInfo(filePath + ":" + lineNumber + ": " + message);
     }
 }