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

SourceError() public static method

public static SourceError ( object source, Exception e ) : void
source object
e System.Exception
return void
        public static void SourceError(object source, Exception e)
        {
            var sb = new StringBuilder();
            WriteException(e, sb);
            Instance.LocalSourceError(source, e.Message, sb.ToString());
        }

Same methods

LogManager::SourceError ( object source, Exception e, string message ) : void
LogManager::SourceError ( object source, string message ) : void