Class: OpenapiFirst::Test::Logger
- Inherits:
-
Logger
- Object
- Logger
- OpenapiFirst::Test::Logger
- Defined in:
- lib/openapi_first/test/logger.rb
Overview
Logger to output coverage reports and such
Instance Method Summary collapse
-
#initialize ⇒ Logger
constructor
A new instance of Logger.
Constructor Details
#initialize ⇒ Logger
Returns a new instance of Logger.
9 10 11 12 13 14 |
# File 'lib/openapi_first/test/logger.rb', line 9 def initialize(*) super self.formatter = proc { |_severity, _time, _progname, msg| "#{msg}\n" } end |