class SemanticLogger::Log

def set_context(key, value)

Lazy initializes the context hash and assigns a key value pair.
def set_context(key, value)
  (self.context ||= {})[key] = value
end