Class: Evrone::CI::Common::TaggedLogging::Formatter
- Inherits:
-
Logger::Formatter
- Object
- Logger::Formatter
- Evrone::CI::Common::TaggedLogging::Formatter
- Defined in:
- lib/evrone/ci/common/tagged_logging.rb
Constant Summary collapse
- Format =
"[%s] %1s : %s\n"
Instance Method Summary collapse
- #call(severity, time, progname, msg) ⇒ Object
- #clear_tags! ⇒ Object
- #current_tags ⇒ Object
- #pop_tags(size = 1) ⇒ Object
- #push_tags(*tags) ⇒ Object
- #tagged(*tags) ⇒ Object
- #thread_id ⇒ Object
Instance Method Details
#call(severity, time, progname, msg) ⇒ Object
13 14 15 16 17 |
# File 'lib/evrone/ci/common/tagged_logging.rb', line 13 def call(severity, time, progname, msg) Format % [format_datetime(time), severity[0...1], msg2str("#{tags_text}#{msg}")] end |
#clear_tags! ⇒ Object
40 41 42 |
# File 'lib/evrone/ci/common/tagged_logging.rb', line 40 def .clear end |
#current_tags ⇒ Object
44 45 46 |
# File 'lib/evrone/ci/common/tagged_logging.rb', line 44 def Thread.current[:activesupport_tagged_logging_tags] ||= [] end |
#pop_tags(size = 1) ⇒ Object
36 37 38 |
# File 'lib/evrone/ci/common/tagged_logging.rb', line 36 def (size = 1) .pop size end |
#push_tags(*tags) ⇒ Object
30 31 32 33 34 |
# File 'lib/evrone/ci/common/tagged_logging.rb', line 30 def (*) .flatten.reject{|i| i.to_s.strip.empty? }.tap do || .concat end end |
#tagged(*tags) ⇒ Object
23 24 25 26 27 28 |
# File 'lib/evrone/ci/common/tagged_logging.rb', line 23 def tagged(*) = (*) yield self ensure (.size) end |
#thread_id ⇒ Object
19 20 21 |
# File 'lib/evrone/ci/common/tagged_logging.rb', line 19 def thread_id Thread.current.object_id end |