Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • webrick/log.rb
  • webrick/server.rb

Methods

WEBrick::Log

A logging class that prepends a timestamp to each message.

Attributes

time_format[RW]

Format of the timestamp which is applied to each logged line. The default is "[%Y-%m-%d %H:%M:%S]"

Public Class Methods

new(log_file=nil, level=nil) click to toggle source

Same as BasicLog#initialize

You can set the timestamp format through time_format

 
               # File webrick/log.rb, line 142
def initialize(log_file=nil, level=nil)
  super(log_file, level)
  @time_format = "[%Y-%m-%d %H:%M:%S]"
end
            

Public Instance Methods

log(level, data) click to toggle source

Same as WEBrick::BasicLog#log

 
               # File webrick/log.rb, line 149
def log(level, data)
  tmp = Time.now.strftime(@time_format)
  tmp << " " << data
  super(level, tmp)
end