Batch.Internal.Logger.Error C# (CSharp) Метод

Error() публичный статический Метод

public static Error ( bool debug, string method, Exception exception ) : void
debug bool
method string
exception System.Exception
Результат void
        public static void Error(bool debug, string method, Exception exception)
        {
            Error(debug, method, string.Format("{0}\n{1}", exception.Message, exception.StackTrace));
        }

Same methods

Logger::Error ( bool debug, string method, string message ) : void