AssemblyCSharp.LogCallbackHandler.HandleLog C# (CSharp) Method

HandleLog() private static method

private static HandleLog ( string condition, string stackTrace, LogType type ) : void
condition string
stackTrace string
type LogType
return void
        private static void HandleLog(string condition, string stackTrace, LogType type)
        {
            for (var i = 0; i < _callbacks.Count; ++i)
            {
            _callbacks[i](condition, stackTrace, type);
            }
        }