Class: Vx::Common::TaggedLogging::Formatter

Inherits:
Logger::Formatter
  • Object
show all
Defined in:
lib/vx/common/tagged_logging.rb

Constant Summary collapse

Format =
"[%s] %1s : %s\n"

Instance Method Summary collapse

Instance Method Details

#call(severity, time, progname, msg) ⇒ Object



12
13
14
15
16
# File 'lib/vx/common/tagged_logging.rb', line 12

def call(severity, time, progname, msg)
  Format % [format_datetime(time),
            severity[0...1],
            msg2str("#{tags_text}#{msg}")]
end

#clear_tags!Object



39
40
41
# File 'lib/vx/common/tagged_logging.rb', line 39

def clear_tags!
  current_tags.clear
end

#current_tagsObject



43
44
45
# File 'lib/vx/common/tagged_logging.rb', line 43

def current_tags
  Thread.current[:activesupport_tagged_logging_tags] ||= []
end

#pop_tags(size = 1) ⇒ Object



35
36
37
# File 'lib/vx/common/tagged_logging.rb', line 35

def pop_tags(size = 1)
  current_tags.pop size
end

#push_tags(*tags) ⇒ Object



29
30
31
32
33
# File 'lib/vx/common/tagged_logging.rb', line 29

def push_tags(*tags)
  tags.flatten.reject{|i| i.to_s.strip.empty? }.tap do |new_tags|
    current_tags.concat new_tags
  end
end

#tagged(*tags) ⇒ Object



22
23
24
25
26
27
# File 'lib/vx/common/tagged_logging.rb', line 22

def tagged(*tags)
  new_tags = push_tags(*tags)
  yield self
ensure
  pop_tags(new_tags.size)
end

#thread_idObject



18
19
20
# File 'lib/vx/common/tagged_logging.rb', line 18

def thread_id
  Thread.current.object_id
end