Sha256: f1a1094ef88a8abeba7ac252a1092248729f7347a93755caa550fbc93ab7ea46
Contents?: true
Size: 480 Bytes
Versions: 64
Compression:
Stored size: 480 Bytes
Contents
# :stopdoc: # # Logging provides a simple, default logger configured in the same manner as # the default Ruby Logger class -- i.e. the output of the two will be the # same. All log messages at "warn" or higher are printed to STDOUT; any # message below the "warn" level are discarded. # require 'logging' log = Logging.logger(STDOUT) log.level = :warn log.debug "this debug message will not be output by the logger" log.warn "this is your last warning" # :startdoc:
Version data entries
64 entries across 56 versions & 6 rubygems