Class: BackgroundLite::StderrErrorReporter
- Defined in:
- lib/background_lite/core_ext/error_reporters/stderr_error_reporter.rb
Overview
Reports error on $stdout.
Class Method Summary collapse
-
.report(error) ⇒ Object
Prints the exception’s error message on $stderr.
Class Method Details
.report(error) ⇒ Object
Prints the exception’s error message on $stderr.
5 6 7 |
# File 'lib/background_lite/core_ext/error_reporters/stderr_error_reporter.rb', line 5 def self.report(error) $stderr.puts error. end |