System.Diagnostics.Debug.UnixDebugLogger.WriteToDebugger C# (CSharp) Method

WriteToDebugger() private static method

private static WriteToDebugger ( string message ) : void
message string
return 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);
                }
            }