Class: Yell::Formatter
- Inherits:
-
Object
- Object
- Yell::Formatter
- Defined in:
- lib/yell/formatter.rb
Overview
The Formatter
provides a handle to configure your log message style.
Defined Under Namespace
Constant Summary collapse
- Table =
{ "m" => "message(event.messages)", # Message "l" => "level(event.level, 1)", # Level (short), e.g.'I', 'W' "L" => "level(event.level)", # Level, e.g. 'INFO', 'WARN' "d" => "date(event.time)", # ISO8601 Timestamp "h" => "event.hostname", # Hostname "p" => "event.pid", # PID "P" => "event.progname", # Progname "t" => "event.thread_id", # Thread ID "F" => "event.file", # Path with filename where the logger was called "f" => "File.basename(event.file)", # Filename where the loger was called "M" => "event.method", # Method name where the logger was called "n" => "event.line", # Line where the logger was called "N" => "event.name" # Name of the logger }
- LegacyTable =
For standard formatted backwards compatibility
Hash[ Table.keys.map { |k| [k, 'noop'] } ].merge( 'm' => 'message(msg)', 'l' => 'level(event, 1)', 'L' => 'level(event)', 'd' => 'date(time)', "p" => "$$", 'P' => 'progname' )
- PatternMatcher =
/([^%]*)(%\d*)?(#{Table.keys.join('|')})?(.*)/m
Instance Attribute Summary collapse
-
#date_pattern ⇒ Object
readonly
Returns the value of attribute date_pattern.
-
#pattern ⇒ Object
readonly
Returns the value of attribute pattern.
Instance Method Summary collapse
-
#initialize(*args, &block) ⇒ Formatter
constructor
Initializes a new
Yell::Formatter
. -
#inspect ⇒ Object
Get a pretty string.
Constructor Details
#initialize(*args, &block) ⇒ Formatter
Initializes a new Yell::Formatter
.
Upon initialization it defines a format method. ‘format` takes a Event instance as agument in order to apply for desired log message formatting.
108 109 110 111 112 113 114 115 116 117 |
# File 'lib/yell/formatter.rb', line 108 def initialize( *args, &block ) builder = Builder.new(*args, &block) @pattern = builder.pattern @date_pattern = builder.date_pattern @modifier = builder.modifier define_date_method! define_call_method! end |
Instance Attribute Details
#date_pattern ⇒ Object (readonly)
Returns the value of attribute date_pattern.
86 87 88 |
# File 'lib/yell/formatter.rb', line 86 def date_pattern @date_pattern end |
#pattern ⇒ Object (readonly)
Returns the value of attribute pattern.
86 87 88 |
# File 'lib/yell/formatter.rb', line 86 def pattern @pattern end |
Instance Method Details
#inspect ⇒ Object
Get a pretty string
120 121 122 |
# File 'lib/yell/formatter.rb', line 120 def inspect "#<#{self.class.name} pattern: #{@pattern.inspect}, date_pattern: #{@date_pattern.inspect}>" end |