SharpQuake.Con.DebugLog C# (CSharp) Method

DebugLog() static private method

Con_DebugLog
static private DebugLog ( string msg ) : void
msg string
return void
        static void DebugLog(string msg)
        {
            if (_Log != null)
            {
                byte[] tmp = Encoding.UTF8.GetBytes(msg);
                _Log.Write(tmp, 0, tmp.Length);
            }
        }