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

Error() public method

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