Sha256: e1fca28639660bd580f522fa29f98837b8e16969d28e965ec56ee8555d6eacda
Contents?: true
Size: 1.15 KB
Versions: 63
Compression:
Stored size: 1.15 KB
Contents
module Logging::Layouts # Accessor / Factory for the Basic layout. # def self.basic( *args ) return ::Logging::Layouts::Basic if args.empty? ::Logging::Layouts::Basic.new(*args) end # The +Basic+ layout class provides methods for simple formatting of log # events. The resulting string follows the format below. # # LEVEL LoggerName : log message # # _LEVEL_ is the log level of the event. _LoggerName_ is the name of the # logger that generated the event. <em>log message</em> is the message # or object that was passed to the logger. If multiple message or objects # were passed to the logger then each will be printed on its own line with # the format show above. # class Basic < ::Logging::Layout # call-seq: # format( event ) # # Returns a string representation of the given logging _event_. See the # class documentation for details about the formatting used. # def format( event ) obj = format_obj(event.data) sprintf("%*s %s : %s\n", ::Logging::MAX_LEVEL_LENGTH, ::Logging::LNAMES[event.level], event.logger, obj) end end # Basic end # Logging::Layouts
Version data entries
63 entries across 55 versions & 6 rubygems