Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more

In Files

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

Methods

Class/Module Index [+]

Quicksearch

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 123
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 130
def log(level, data)
  tmp = Time.now.strftime(@time_format)
  tmp << " " << data
  super(level, tmp)
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.