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

Error() 공개 메소드

The error.
public Error ( string message, Exception exception ) : void
message string /// The message. ///
exception System.Exception /// The exception. ///
리턴 void
        public void Error(string message, Exception exception)
        {
            Console.WriteLine(message);
            Console.WriteLine(exception);
            ErrorCallCount++;
        }