Aspects.Logging.Tests.Utilities.MockLogger.Fatal C# (CSharp) Method

Fatal() public method

The fatal.
public Fatal ( string message, Exception exception ) : void
message string /// The message. ///
exception System.Exception /// The exception. ///
return void
        public void Fatal(string message, Exception exception)
        {
            Console.WriteLine(message);
            Console.WriteLine(exception);
            FatalCallCount++;
        }