ACR_ServerCommunicator.GameWorldManager.WriteDiagnosticLog C# (CSharp) Method

WriteDiagnosticLog() public method

This method is called to write a diagnostic log message to the main server log. The method is called with synchronization held on the WorldManager object.
public WriteDiagnosticLog ( string Message ) : void
Message string Supplies the message text to log.
return void
        public void WriteDiagnosticLog(string Message)
        {
            EnqueueEvent(new DiagnosticLogEvent(Message));
        }