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

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

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

Same methods

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