Convenience implementation of an exception handler that using Console.WriteLine to log the exception
Inheritance: IExceptionHandler
        public void ShouldHandleAndIgnoreException()
        {
            var ex = new Exception();
            var @event = new TestEvent();

            var exceptionHandler = new IgnoreExceptionHandler();
            exceptionHandler.HandleEventException(ex, 0L, @event);
        }
	    public void ShouldHandleAndIgnoreException()
	    {
	        Exception ex = new Exception();
	        Entry entry = new TestEntry();
	
	        ILog logger = _mocks.StrictMock<ILog>();
	        
	        Expect.Call(() => logger.Info("Exception processing: " + entry, ex));
	
	        _mocks.ReplayAll();
	        IExceptionHandler exceptionHandler = new IgnoreExceptionHandler(logger);
	        exceptionHandler.Handle(ex, entry);
	        _mocks.VerifyAll();
	    }