Class: WEBrick::BasicLog

Inherits:
Object
  • Object
show all
Defined in:
lib/webrick/log.rb

Overview

A generic logging class

Direct Known Subclasses

Log

Constant Summary collapse

FATAL =

Fatal log level which indicates a server crash

1
ERROR =

Error log level which indicates a recoverable error

2
WARN =

Warning log level which indicates a possible problem

3
INFO =

Information log level which indicates possibly useful information

4
DEBUG =

Debugging error level for messages used in server development or debugging

5

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(log_file = nil, level = nil) ⇒ BasicLog

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



49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/webrick/log.rb', line 49

def initialize(log_file=nil, level=nil)
  @level = level || INFO
  case log_file
  when String
    @log = open(log_file, "a+")
    @log.sync = true
    @opened = true
  when NilClass
    @log = $stderr
  else
    @log = log_file  # requires "<<". (see BasicLog#log)
  end
end

Instance Attribute Details

#levelObject

log-level, messages above this level will be logged



40
41
42
# File 'lib/webrick/log.rb', line 40

def level
  @level
end

Instance Method Details

#<<(obj) ⇒ Object

Synonym for log(INFO, obj.to_s)



83
84
85
# File 'lib/webrick/log.rb', line 83

def <<(obj)
  log(INFO, obj.to_s)
end

#closeObject

Closes the logger (also closes the log device associated to the logger)



65
66
67
68
# File 'lib/webrick/log.rb', line 65

def close
  @log.close if @opened
  @log = nil
end

#debug(msg) ⇒ Object

Shortcut for logging a DEBUG message



96
# File 'lib/webrick/log.rb', line 96

def debug(msg) log(DEBUG, "DEBUG " << format(msg)); end

#debug?Boolean

Will the logger output DEBUG messages?

Returns:

  • (Boolean)


107
# File 'lib/webrick/log.rb', line 107

def debug?; @level >= DEBUG; end

#error(msg) ⇒ Object

Shortcut for logging an ERROR message



90
# File 'lib/webrick/log.rb', line 90

def error(msg) log(ERROR, "ERROR " << format(msg)); end

#error?Boolean

Will the logger output ERROR messages?

Returns:

  • (Boolean)


101
# File 'lib/webrick/log.rb', line 101

def error?; @level >= ERROR; end

#fatal(msg) ⇒ Object

Shortcut for logging a FATAL message



88
# File 'lib/webrick/log.rb', line 88

def fatal(msg) log(FATAL, "FATAL " << format(msg)); end

#fatal?Boolean

Will the logger output FATAL messages?

Returns:

  • (Boolean)


99
# File 'lib/webrick/log.rb', line 99

def fatal?; @level >= FATAL; end

#info(msg) ⇒ Object

Shortcut for logging an INFO message



94
# File 'lib/webrick/log.rb', line 94

def info(msg)  log(INFO,  "INFO  " << format(msg)); end

#info?Boolean

Will the logger output INFO messages?

Returns:

  • (Boolean)


105
# File 'lib/webrick/log.rb', line 105

def info?;  @level >= INFO; end

#log(level, data) ⇒ Object

Logs data at level if the given level is above the current log level.



74
75
76
77
78
79
# File 'lib/webrick/log.rb', line 74

def log(level, data)
  if @log && level <= @level
    data += "\n" if /\n\Z/ !~ data
    @log << data
  end
end

#warn(msg) ⇒ Object

Shortcut for logging a WARN message



92
# File 'lib/webrick/log.rb', line 92

def warn(msg)  log(WARN,  "WARN  " << format(msg)); end

#warn?Boolean

Will the logger output WARN messages?

Returns:

  • (Boolean)


103
# File 'lib/webrick/log.rb', line 103

def warn?;  @level >= WARN; end