module Asciidoctor::Logging

def self.included into

Returns nothing

into - The Class that includes the {Logging} module

Private: Mixes the {Logging} module as static methods into any class that includes the {Logging} module.
def self.included into
  into.extend Logging
end

def logger

def logger
  LoggerManager.logger
end

def message_with_context text, context = {}

def message_with_context text, context = {}
  ({ text: text }.merge context).extend Logger::AutoFormattingMessage
end