class WEBrick::BasicLog
A generic logging class
Constants
- DEBUG
-
Debugging error level for messages used in server development or debugging
- ERROR
-
Error log level which indicates a recoverable error
- FATAL
-
Fatal log level which indicates a server crash
- INFO
-
Information log level which indicates possibly useful information
- WARN
-
Warning log level which indicates a possible problem
Attributes
log-level, messages above this level will be logged
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/log.rb, line 50 def initialize(log_file=nil, level=nil) @level = level || INFO case log_file when String @log = File.open(log_file, "a+") @log.sync = true @opened = true when NilClass @log = $stderr else @log = log_file # requires "<<". (see BasicLog#log) end end
Initializes a new logger for log_file
that outputs messages at level
or higher. log_file
can be a filename, an IO-like object that responds to <<
or nil which outputs to $stderr.
If no level is given INFO
is chosen by default
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/log.rb, line 84 def <<(obj) log(INFO, obj.to_s) end
Synonym for log(INFO
, obj.to_s)
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/log.rb, line 66 def close @log.close if @opened @log = nil end
Closes the logger (also closes the log device associated to the logger)
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/log.rb, line 97 def debug(msg) log(DEBUG, "DEBUG " + format(msg)); end
Shortcut for logging a DEBUG
message
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/log.rb, line 108 def debug?; @level >= DEBUG; end
Will the logger output DEBUG
messages?
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/log.rb, line 91 def error(msg) log(ERROR, "ERROR " + format(msg)); end
Shortcut for logging an ERROR
message
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/log.rb, line 102 def error?; @level >= ERROR; end
Will the logger output ERROR
messages?
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/log.rb, line 89 def fatal(msg) log(FATAL, "FATAL " + format(msg)); end
Shortcut for logging a FATAL
message
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/log.rb, line 100 def fatal?; @level >= FATAL; end
Will the logger output FATAL
messages?
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/log.rb, line 95 def info(msg) log(INFO, "INFO " + format(msg)); end
Shortcut for logging an INFO
message
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/log.rb, line 106 def info?; @level >= INFO; end
Will the logger output INFO
messages?
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/log.rb, line 75 def log(level, data) if @log && level <= @level data += "\n" if /\n\Z/ !~ data @log << data end end
Logs data
at level
if the given level is above the current log level.
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/log.rb, line 93 def warn(msg) log(WARN, "WARN " + format(msg)); end
Shortcut for logging a WARN
message