Aspects.Logging.Tests.Utilities.MockLogger.Fatal C# (CSharp) 메소드

Fatal() 공개 메소드

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