Anotar.LibLog.LogTo.ErrorException C# (CSharp) Method

ErrorException() public static method

Writes the diagnostic message and exception at the Error level.
public static ErrorException ( Func message, Exception exception ) : void
message Func The log message.
exception System.Exception An exception to be logged.
return void
        public static void ErrorException(Func<string> message, Exception exception)
        {
            throw new NotImplementedException();
        }

Same methods

LogTo::ErrorException ( string message, Exception exception ) : void