class Reek::LoggingErrorHandler
Handles errors by logging to stderr
Public Instance Methods
Source
# File lib/reek/logging_error_handler.rb, line 8 def handle(exception) case exception when Errors::BaseError warn exception.long_message else warn exception.message end true end