System.Diagnostics.Debug.UnixDebugLogger.WriteToDebugger C# (CSharp) 메소드

WriteToDebugger() 개인적인 정적인 메소드

private static WriteToDebugger ( string message ) : void
message string
리턴 void
            private static void WriteToDebugger(string message)
            {
                if (Debugger.IsLogging())
                {
                    Debugger.Log(0, null, message);
                }
                else
                {
                    Interop.Sys.SysLog(Interop.Sys.SysLogPriority.LOG_USER | Interop.Sys.SysLogPriority.LOG_DEBUG, "%s", message);
                }
            }