class Lumberjack::Context

def initialize(parent_context = nil)

Parameters:
  • parent_context (Context) -- A parent context to inherit tags from.
def initialize(parent_context = nil)
  @tags = {}
  @tags.merge!(parent_context.tags) if parent_context
end