Class: VidazingLogger::Appenders::Stdout Private

Inherits:
VidazingLogger::Appender show all
Defined in:
lib/vidazing_logger/appenders/stdout.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Appender writing to STDOUT

Since:

  • 0.1.0

Instance Attribute Summary

Attributes inherited from VidazingLogger::Appender

#color_scheme, #filter_levels, #name

Instance Method Summary collapse

Constructor Details

#initializeStdout

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Stdout.

Since:

  • 0.1.0



14
15
16
17
18
19
# File 'lib/vidazing_logger/appenders/stdout.rb', line 14

def initialize
  super \
    name: self.class.name,
    color_scheme: ColorScheme.normal,
    filter_levels: Filters::Levels.normal
end