class Kuroko2::Util::Logger::LoggerFormatter

def call(severity, timestamp, progname, msg)

def call(severity, timestamp, progname, msg)
  location = caller_locations(4, 1).first
  "%s %-5s - %s: %s\n" % [timestamp.iso8601, severity, location.label, msg]
end