ATMLManagerLibrary.managers.LogManager.LocalDebug C# (CSharp) Method

LocalDebug() protected method

protected LocalDebug ( string message ) : void
message string
return void
        protected virtual void LocalDebug(string message, params object[] list)
        {
            if (OnDebug != null && ATMLContext.IsValid)
                OnDebug((list.Length == 0 ? message : string.Format(message, list)));
        }

Same methods

LogManager::LocalDebug ( Exception e ) : void