Anotar.NServiceBus.LogTo.DebugException C# (CSharp) Method

DebugException() public static method

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

Same methods

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