2019-03-21 06:58:17 +03:00
|
|
|
# frozen_string_literal: true
|
2008-06-04 13:37:38 +04:00
|
|
|
# logger.rb - simple logging utility
|
2011-01-18 09:11:41 +03:00
|
|
|
# Copyright (C) 2000-2003, 2005, 2008, 2011 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
|
|
|
# Documentation:: NAKAMURA, Hiroshi and Gavin Sinclair
|
|
|
|
# License::
|
2004-01-06 14:55:08 +03:00
|
|
|
# You can redistribute it and/or modify it under the same terms of Ruby's
|
|
|
|
# license; either the dual license version in 2003, or any later version.
|
2004-01-05 16:33:48 +03:00
|
|
|
# Revision:: $Id$
|
2007-05-16 16:52:52 +04:00
|
|
|
#
|
2011-05-17 01:43:20 +04:00
|
|
|
# A simple system for logging messages. See Logger for more documentation.
|
2007-05-16 16:52:52 +04:00
|
|
|
|
2009-10-20 19:08:38 +04:00
|
|
|
require 'monitor'
|
2019-03-21 02:35:29 +03:00
|
|
|
|
|
|
|
require_relative 'logger/version'
|
|
|
|
require_relative 'logger/formatter'
|
|
|
|
require_relative 'logger/log_device'
|
|
|
|
require_relative 'logger/severity'
|
|
|
|
require_relative 'logger/errors'
|
2009-10-20 19:08:38 +04:00
|
|
|
|
2004-01-05 16:33:48 +03:00
|
|
|
# == Description
|
|
|
|
#
|
|
|
|
# The Logger class provides a simple but sophisticated logging utility that
|
2011-05-17 01:43:20 +04:00
|
|
|
# you can use to output messages.
|
|
|
|
#
|
|
|
|
# The messages have associated levels, such as +INFO+ or +ERROR+ that indicate
|
|
|
|
# their importance. You can then give the Logger a level, and only messages
|
2012-07-18 04:27:04 +04:00
|
|
|
# at that level or higher will be printed.
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
2011-05-17 01:43:20 +04:00
|
|
|
# The levels are:
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
2012-07-18 04:27:04 +04:00
|
|
|
# +UNKNOWN+:: An unknown message that should always be logged.
|
|
|
|
# +FATAL+:: An unhandleable error that results in a program crash.
|
|
|
|
# +ERROR+:: A handleable error condition.
|
|
|
|
# +WARN+:: A warning.
|
|
|
|
# +INFO+:: Generic (useful) information about system operation.
|
|
|
|
# +DEBUG+:: Low-level information for developers.
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
2011-05-17 01:43:20 +04:00
|
|
|
# For instance, in a production system, you may have your Logger set to
|
2012-07-18 04:27:04 +04:00
|
|
|
# +INFO+ or even +WARN+.
|
2011-05-17 01:43:20 +04:00
|
|
|
# When you are developing the system, however, you probably
|
|
|
|
# want to know about the program's internal state, and would set the Logger to
|
2004-01-05 16:33:48 +03:00
|
|
|
# +DEBUG+.
|
|
|
|
#
|
2011-05-17 01:43:20 +04:00
|
|
|
# *Note*: Logger does not escape or sanitize any messages passed to it.
|
2011-01-18 09:11:41 +03:00
|
|
|
# Developers should be aware of when potentially malicious data (user-input)
|
|
|
|
# is passed to Logger, and manually escape the untrusted data:
|
|
|
|
#
|
|
|
|
# logger.info("User-input: #{input.dump}")
|
|
|
|
# logger.info("User-input: %p" % input)
|
|
|
|
#
|
2011-05-17 01:43:20 +04:00
|
|
|
# You can use #formatter= for escaping all data.
|
2011-01-18 09:11:41 +03:00
|
|
|
#
|
|
|
|
# original_formatter = Logger::Formatter.new
|
|
|
|
# logger.formatter = proc { |severity, datetime, progname, msg|
|
|
|
|
# original_formatter.call(severity, datetime, progname, msg.dump)
|
|
|
|
# }
|
|
|
|
# logger.info(input)
|
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# === Example
|
|
|
|
#
|
2012-07-18 04:27:04 +04:00
|
|
|
# This creates a Logger that outputs to the standard output stream, with a
|
|
|
|
# level of +WARN+:
|
|
|
|
#
|
|
|
|
# require 'logger'
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
2012-07-21 03:41:51 +04:00
|
|
|
# logger = Logger.new(STDOUT)
|
|
|
|
# logger.level = Logger::WARN
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
2012-07-21 03:41:51 +04:00
|
|
|
# logger.debug("Created logger")
|
|
|
|
# logger.info("Program started")
|
|
|
|
# logger.warn("Nothing to do!")
|
|
|
|
#
|
|
|
|
# path = "a_non_existent_file"
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
|
|
|
# begin
|
2012-07-21 03:41:51 +04:00
|
|
|
# File.foreach(path) do |line|
|
2004-01-05 16:33:48 +03:00
|
|
|
# unless line =~ /^(\w+) = (.*)$/
|
2012-07-21 03:41:51 +04:00
|
|
|
# logger.error("Line in wrong format: #{line.chomp}")
|
2004-01-05 16:33:48 +03:00
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# rescue => err
|
2012-07-21 03:41:51 +04:00
|
|
|
# logger.fatal("Caught exception; exiting")
|
|
|
|
# logger.fatal(err)
|
2004-01-05 16:33:48 +03:00
|
|
|
# end
|
|
|
|
#
|
|
|
|
# Because the Logger's level is set to +WARN+, only the warning, error, and
|
|
|
|
# fatal messages are recorded. The debug and info messages are silently
|
|
|
|
# discarded.
|
|
|
|
#
|
|
|
|
# === Features
|
|
|
|
#
|
|
|
|
# There are several interesting features that Logger provides, like
|
|
|
|
# auto-rolling of log files, setting the format of log messages, and
|
|
|
|
# specifying a program name in conjunction with the message. The next section
|
|
|
|
# shows you how to achieve these things.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# == HOWTOs
|
|
|
|
#
|
|
|
|
# === How to create a logger
|
|
|
|
#
|
|
|
|
# The options below give you various choices, in more or less increasing
|
|
|
|
# complexity.
|
|
|
|
#
|
|
|
|
# 1. Create a logger which logs messages to STDERR/STDOUT.
|
|
|
|
#
|
|
|
|
# logger = Logger.new(STDERR)
|
|
|
|
# logger = Logger.new(STDOUT)
|
|
|
|
#
|
|
|
|
# 2. Create a logger for the file which has the specified name.
|
|
|
|
#
|
|
|
|
# logger = Logger.new('logfile.log')
|
|
|
|
#
|
|
|
|
# 3. Create a logger for the specified file.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# file = File.open('foo.log', File::WRONLY | File::APPEND)
|
2018-07-25 21:04:16 +03:00
|
|
|
# # To create new logfile, add File::CREAT like:
|
2012-07-18 04:27:04 +04:00
|
|
|
# # file = File.open('foo.log', File::WRONLY | File::APPEND | File::CREAT)
|
2004-01-05 16:33:48 +03:00
|
|
|
# logger = Logger.new(file)
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2012-07-18 04:27:04 +04:00
|
|
|
# 4. Create a logger which ages the logfile once it reaches a certain size.
|
|
|
|
# Leave 10 "old" log files where each file is about 1,024,000 bytes.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# logger = Logger.new('foo.log', 10, 1024000)
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2012-07-18 04:27:04 +04:00
|
|
|
# 5. Create a logger which ages the logfile daily/weekly/monthly.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# logger = Logger.new('foo.log', 'daily')
|
|
|
|
# logger = Logger.new('foo.log', 'weekly')
|
|
|
|
# logger = Logger.new('foo.log', 'monthly')
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# === How to log a message
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# Notice the different methods (+fatal+, +error+, +info+) being used to log
|
2011-05-17 01:43:20 +04:00
|
|
|
# messages of various levels? Other methods in this family are +warn+ and
|
2004-01-05 16:33:48 +03:00
|
|
|
# +debug+. +add+ is used below to log a message of an arbitrary (perhaps
|
|
|
|
# dynamic) level.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2012-07-18 04:27:04 +04:00
|
|
|
# 1. Message in a block.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# logger.fatal { "Argument 'foo' not given." }
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# 2. Message as a string.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2012-07-18 04:27:04 +04:00
|
|
|
# logger.error "Argument #{@foo} mismatch."
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# 3. With progname.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# logger.info('initialize') { "Initializing..." }
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# 4. With severity.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# logger.add(Logger::FATAL) { 'Fatal error!' }
|
2011-05-18 18:09:38 +04:00
|
|
|
#
|
2011-05-17 01:43:20 +04:00
|
|
|
# The block form allows you to create potentially complex log messages,
|
|
|
|
# but to delay their evaluation until and unless the message is
|
|
|
|
# logged. For example, if we have the following:
|
|
|
|
#
|
|
|
|
# logger.debug { "This is a " + potentially + " expensive operation" }
|
|
|
|
#
|
|
|
|
# If the logger's level is +INFO+ or higher, no debug messages will be logged,
|
|
|
|
# and the entire block will not even be evaluated. Compare to this:
|
|
|
|
#
|
|
|
|
# logger.debug("This is a " + potentially + " expensive operation")
|
|
|
|
#
|
|
|
|
# Here, the string concatenation is done every time, even if the log
|
|
|
|
# level is not set to show the debug message.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# === How to close a logger
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# logger.close
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# === Setting severity threshold
|
|
|
|
#
|
|
|
|
# 1. Original interface.
|
|
|
|
#
|
2005-07-16 09:14:23 +04:00
|
|
|
# logger.sev_threshold = Logger::WARN
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
|
|
|
# 2. Log4r (somewhat) compatible interface.
|
|
|
|
#
|
|
|
|
# logger.level = Logger::INFO
|
|
|
|
#
|
2012-07-18 04:27:04 +04:00
|
|
|
# # DEBUG < INFO < WARN < ERROR < FATAL < UNKNOWN
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
2015-11-17 17:15:25 +03:00
|
|
|
# 3. Symbol or String (case insensitive)
|
|
|
|
#
|
|
|
|
# logger.level = :info
|
|
|
|
# logger.level = 'INFO'
|
|
|
|
#
|
|
|
|
# # :debug < :info < :warn < :error < :fatal < :unknown
|
|
|
|
#
|
2016-04-18 13:45:40 +03:00
|
|
|
# 4. Constructor
|
|
|
|
#
|
|
|
|
# Logger.new(logdev, level: Logger::INFO)
|
|
|
|
# Logger.new(logdev, level: :info)
|
|
|
|
# Logger.new(logdev, level: 'INFO')
|
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# == Format
|
|
|
|
#
|
2007-05-16 16:52:52 +04:00
|
|
|
# Log messages are rendered in the output stream in a certain format by
|
|
|
|
# default. The default format and a sample are shown below:
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
|
|
|
# Log format:
|
2012-07-18 04:27:04 +04:00
|
|
|
# SeverityID, [DateTime #pid] SeverityLabel -- ProgName: message
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
|
|
|
# Log sample:
|
2012-07-18 04:27:04 +04:00
|
|
|
# I, [1999-03-03T02:34:24.895701 #19074] INFO -- Main: info.
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
2012-07-18 04:27:04 +04:00
|
|
|
# You may change the date and time format via #datetime_format=.
|
2004-03-26 19:47:16 +03:00
|
|
|
#
|
2012-07-18 04:27:04 +04:00
|
|
|
# logger.datetime_format = '%Y-%m-%d %H:%M:%S'
|
2004-01-05 16:33:48 +03:00
|
|
|
# # e.g. "2004-01-03 00:54:26"
|
|
|
|
#
|
2016-04-18 13:45:40 +03:00
|
|
|
# or via the constructor.
|
|
|
|
#
|
|
|
|
# Logger.new(logdev, datetime_format: '%Y-%m-%d %H:%M:%S')
|
|
|
|
#
|
2012-07-18 04:27:04 +04:00
|
|
|
# Or, you may change the overall format via the #formatter= method.
|
2007-05-16 16:52:52 +04:00
|
|
|
#
|
2011-05-17 01:43:20 +04:00
|
|
|
# logger.formatter = proc do |severity, datetime, progname, msg|
|
2007-05-16 16:52:52 +04:00
|
|
|
# "#{datetime}: #{msg}\n"
|
2011-05-17 01:43:20 +04:00
|
|
|
# end
|
2012-07-18 04:27:04 +04:00
|
|
|
# # e.g. "2005-09-22 08:51:08 +0900: hello world"
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2016-04-18 13:45:40 +03:00
|
|
|
# or via the constructor.
|
|
|
|
#
|
|
|
|
# Logger.new(logdev, formatter: proc {|severity, datetime, progname, msg|
|
|
|
|
# "#{datetime}: #{msg}\n"
|
|
|
|
# })
|
|
|
|
#
|
2003-09-18 10:31:25 +04:00
|
|
|
class Logger
|
2010-07-11 20:59:10 +04:00
|
|
|
_, name, rev = %w$Id$
|
2008-11-20 01:35:40 +03:00
|
|
|
if name
|
|
|
|
name = name.chomp(",v")
|
|
|
|
else
|
|
|
|
name = File.basename(__FILE__)
|
|
|
|
end
|
|
|
|
rev ||= "v#{VERSION}"
|
2015-10-26 17:51:04 +03:00
|
|
|
ProgName = "#{name}/#{rev}".freeze
|
2003-09-18 10:31:25 +04:00
|
|
|
|
|
|
|
include Severity
|
|
|
|
|
2004-01-05 16:33:48 +03:00
|
|
|
# Logging severity threshold (e.g. <tt>Logger::INFO</tt>).
|
2015-11-17 17:15:25 +03:00
|
|
|
attr_reader :level
|
|
|
|
|
|
|
|
# Set logging severity threshold.
|
|
|
|
#
|
|
|
|
# +severity+:: The Severity of the log message.
|
|
|
|
def level=(severity)
|
|
|
|
if severity.is_a?(Integer)
|
|
|
|
@level = severity
|
|
|
|
else
|
2016-04-06 04:56:16 +03:00
|
|
|
case severity.to_s.downcase
|
2017-03-24 10:29:33 +03:00
|
|
|
when 'debug'
|
2015-11-17 17:15:25 +03:00
|
|
|
@level = DEBUG
|
2017-03-24 10:29:33 +03:00
|
|
|
when 'info'
|
2015-11-17 17:15:25 +03:00
|
|
|
@level = INFO
|
2017-03-24 10:29:33 +03:00
|
|
|
when 'warn'
|
2015-11-17 17:15:25 +03:00
|
|
|
@level = WARN
|
2017-03-24 10:29:33 +03:00
|
|
|
when 'error'
|
2015-11-17 17:15:25 +03:00
|
|
|
@level = ERROR
|
2017-03-24 10:29:33 +03:00
|
|
|
when 'fatal'
|
2015-11-17 17:15:25 +03:00
|
|
|
@level = FATAL
|
2017-03-24 10:29:33 +03:00
|
|
|
when 'unknown'
|
2015-11-17 17:15:25 +03:00
|
|
|
@level = UNKNOWN
|
|
|
|
else
|
|
|
|
raise ArgumentError, "invalid log level: #{severity}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2003-09-18 10:31:25 +04:00
|
|
|
|
2012-07-18 04:27:04 +04:00
|
|
|
# Program name to include in log messages.
|
2003-09-18 10:31:25 +04:00
|
|
|
attr_accessor :progname
|
|
|
|
|
2011-05-17 01:43:20 +04:00
|
|
|
# Set date-time format.
|
|
|
|
#
|
|
|
|
# +datetime_format+:: A string suitable for passing to +strftime+.
|
2005-09-13 17:13:41 +04:00
|
|
|
def datetime_format=(datetime_format)
|
|
|
|
@default_formatter.datetime_format = datetime_format
|
|
|
|
end
|
|
|
|
|
2011-05-17 01:43:20 +04:00
|
|
|
# Returns the date format being used. See #datetime_format=
|
2005-09-13 17:13:41 +04:00
|
|
|
def datetime_format
|
|
|
|
@default_formatter.datetime_format
|
|
|
|
end
|
|
|
|
|
2011-05-17 01:43:20 +04:00
|
|
|
# Logging formatter, as a +Proc+ that will take four arguments and
|
|
|
|
# return the formatted message. The arguments are:
|
|
|
|
#
|
2012-07-18 04:27:04 +04:00
|
|
|
# +severity+:: The Severity of the log message.
|
|
|
|
# +time+:: A Time instance representing when the message was logged.
|
|
|
|
# +progname+:: The #progname configured, or passed to the logger method.
|
2011-05-17 01:43:20 +04:00
|
|
|
# +msg+:: The _Object_ the user passed to the log message; not necessarily a
|
|
|
|
# String.
|
|
|
|
#
|
|
|
|
# The block should return an Object that can be written to the logging
|
|
|
|
# device via +write+. The default formatter is used when no formatter is
|
|
|
|
# set.
|
2005-09-13 17:13:41 +04:00
|
|
|
attr_accessor :formatter
|
2003-09-18 10:31:25 +04:00
|
|
|
|
|
|
|
alias sev_threshold level
|
|
|
|
alias sev_threshold= level=
|
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
# Returns +true+ iff the current severity level allows for the printing of
|
|
|
|
# +DEBUG+ messages.
|
|
|
|
def debug?; @level <= DEBUG; end
|
2004-01-05 16:33:48 +03:00
|
|
|
|
2019-03-15 02:12:11 +03:00
|
|
|
# Sets the severity to DEBUG.
|
|
|
|
def debug!; self.level = DEBUG; end
|
|
|
|
|
2004-01-05 16:33:48 +03:00
|
|
|
# Returns +true+ iff the current severity level allows for the printing of
|
|
|
|
# +INFO+ messages.
|
2003-09-18 10:31:25 +04:00
|
|
|
def info?; @level <= INFO; end
|
2004-01-05 16:33:48 +03:00
|
|
|
|
2019-03-15 02:12:11 +03:00
|
|
|
# Sets the severity to INFO.
|
|
|
|
def info!; self.level = INFO; end
|
|
|
|
|
2004-01-05 16:33:48 +03:00
|
|
|
# Returns +true+ iff the current severity level allows for the printing of
|
|
|
|
# +WARN+ messages.
|
2003-09-18 10:31:25 +04:00
|
|
|
def warn?; @level <= WARN; end
|
2004-01-05 16:33:48 +03:00
|
|
|
|
2019-03-15 02:12:11 +03:00
|
|
|
# Sets the severity to WARN.
|
|
|
|
def warn!; self.level = WARN; end
|
|
|
|
|
2004-01-05 16:33:48 +03:00
|
|
|
# Returns +true+ iff the current severity level allows for the printing of
|
|
|
|
# +ERROR+ messages.
|
2003-09-18 10:31:25 +04:00
|
|
|
def error?; @level <= ERROR; end
|
2004-01-05 16:33:48 +03:00
|
|
|
|
2019-03-15 02:12:11 +03:00
|
|
|
# Sets the severity to ERROR.
|
|
|
|
def error!; self.level = ERROR; end
|
|
|
|
|
2004-01-05 16:33:48 +03:00
|
|
|
# Returns +true+ iff the current severity level allows for the printing of
|
|
|
|
# +FATAL+ messages.
|
2003-09-20 06:51:06 +04:00
|
|
|
def fatal?; @level <= FATAL; end
|
2003-09-18 10:31:25 +04:00
|
|
|
|
2019-03-15 02:12:11 +03:00
|
|
|
# Sets the severity to FATAL.
|
|
|
|
def fatal!; self.level = FATAL; end
|
|
|
|
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
2013-07-10 18:30:12 +04:00
|
|
|
# :call-seq:
|
2016-10-03 15:21:14 +03:00
|
|
|
# Logger.new(logdev, shift_age = 0, shift_size = 1048576)
|
2014-02-11 04:10:13 +04:00
|
|
|
# Logger.new(logdev, shift_age = 'weekly')
|
2016-04-18 13:45:40 +03:00
|
|
|
# Logger.new(logdev, level: :info)
|
|
|
|
# Logger.new(logdev, progname: 'progname')
|
|
|
|
# Logger.new(logdev, formatter: formatter)
|
|
|
|
# Logger.new(logdev, datetime_format: '%Y-%m-%d %H:%M:%S')
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
|
|
|
# === Args
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# +logdev+::
|
|
|
|
# The log device. This is a filename (String) or IO object (typically
|
|
|
|
# +STDOUT+, +STDERR+, or an open file).
|
|
|
|
# +shift_age+::
|
|
|
|
# Number of old log files to keep, *or* frequency of rotation (+daily+,
|
2016-04-06 04:56:16 +03:00
|
|
|
# +weekly+ or +monthly+). Default value is 0.
|
2004-01-05 16:33:48 +03:00
|
|
|
# +shift_size+::
|
2016-10-14 12:01:01 +03:00
|
|
|
# Maximum logfile size in bytes (only applies when +shift_age+ is a number).
|
|
|
|
# Defaults to +1048576+ (1MB).
|
2016-04-18 13:45:40 +03:00
|
|
|
# +level+::
|
|
|
|
# Logging severity threshold. Default values is Logger::DEBUG.
|
|
|
|
# +progname+::
|
|
|
|
# Program name to include in log messages. Default value is nil.
|
|
|
|
# +formatter+::
|
|
|
|
# Logging formatter. Default values is an instance of Logger::Formatter.
|
|
|
|
# +datetime_format+::
|
|
|
|
# Date and time format. Default value is '%Y-%m-%d %H:%M:%S'.
|
2019-06-05 01:07:26 +03:00
|
|
|
# +binmode+::
|
|
|
|
# Use binany mode on the log device. Defaul value is false.
|
2016-04-18 18:07:31 +03:00
|
|
|
# +shift_period_suffix+::
|
|
|
|
# The log file suffix format for +daily+, +weekly+ or +monthly+ rotation.
|
|
|
|
# Default is '%Y%m%d'.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# === Description
|
|
|
|
#
|
2005-09-13 17:13:41 +04:00
|
|
|
# Create an instance.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2016-04-18 13:45:40 +03:00
|
|
|
def initialize(logdev, shift_age = 0, shift_size = 1048576, level: DEBUG,
|
2016-04-18 18:07:31 +03:00
|
|
|
progname: nil, formatter: nil, datetime_format: nil,
|
2019-06-05 01:07:26 +03:00
|
|
|
binmode: false, shift_period_suffix: '%Y%m%d')
|
2016-04-18 13:45:40 +03:00
|
|
|
self.level = level
|
|
|
|
self.progname = progname
|
2005-09-13 17:13:41 +04:00
|
|
|
@default_formatter = Formatter.new
|
2016-04-18 13:45:40 +03:00
|
|
|
self.datetime_format = datetime_format
|
|
|
|
self.formatter = formatter
|
2003-09-20 06:51:06 +04:00
|
|
|
@logdev = nil
|
|
|
|
if logdev
|
2019-06-05 01:07:26 +03:00
|
|
|
@logdev = LogDevice.new(logdev, shift_age: shift_age,
|
|
|
|
shift_size: shift_size,
|
|
|
|
shift_period_suffix: shift_period_suffix,
|
|
|
|
binmode: binmode)
|
2003-09-20 06:51:06 +04:00
|
|
|
end
|
2003-09-18 10:31:25 +04:00
|
|
|
end
|
|
|
|
|
2015-11-17 16:58:57 +03:00
|
|
|
#
|
|
|
|
# :call-seq:
|
|
|
|
# Logger#reopen
|
|
|
|
# Logger#reopen(logdev)
|
|
|
|
#
|
|
|
|
# === Args
|
|
|
|
#
|
|
|
|
# +logdev+::
|
|
|
|
# The log device. This is a filename (String) or IO object (typically
|
2016-04-06 04:56:16 +03:00
|
|
|
# +STDOUT+, +STDERR+, or an open file). reopen the same filename if
|
|
|
|
# it is +nil+, do nothing for IO. Default is +nil+.
|
2015-11-17 16:58:57 +03:00
|
|
|
#
|
|
|
|
# === Description
|
|
|
|
#
|
|
|
|
# Reopen a log device.
|
|
|
|
#
|
|
|
|
def reopen(logdev = nil)
|
|
|
|
@logdev.reopen(logdev)
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2013-07-10 18:30:12 +04:00
|
|
|
# :call-seq:
|
2004-01-05 16:33:48 +03:00
|
|
|
# Logger#add(severity, message = nil, progname = nil) { ... }
|
|
|
|
#
|
|
|
|
# === Args
|
|
|
|
#
|
|
|
|
# +severity+::
|
|
|
|
# Severity. Constants are defined in Logger namespace: +DEBUG+, +INFO+,
|
|
|
|
# +WARN+, +ERROR+, +FATAL+, or +UNKNOWN+.
|
|
|
|
# +message+::
|
|
|
|
# The log message. A String or Exception.
|
|
|
|
# +progname+::
|
2011-05-13 16:54:57 +04:00
|
|
|
# Program name string. Can be omitted. Treated as a message if no
|
|
|
|
# +message+ and +block+ are given.
|
2004-01-05 16:33:48 +03:00
|
|
|
# +block+::
|
|
|
|
# Can be omitted. Called to get a message string if +message+ is nil.
|
|
|
|
#
|
|
|
|
# === Return
|
|
|
|
#
|
2012-07-18 04:27:04 +04:00
|
|
|
# When the given severity is not high enough (for this particular logger),
|
|
|
|
# log no message, and return +true+.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# === Description
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# Log a message if the given severity is high enough. This is the generic
|
|
|
|
# logging method. Users will be more inclined to use #debug, #info, #warn,
|
|
|
|
# #error, and #fatal.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# <b>Message format</b>: +message+ can be any object, but it has to be
|
2004-01-06 14:55:08 +03:00
|
|
|
# converted to a String in order to log it. Generally, +inspect+ is used
|
|
|
|
# if the given object is not a String.
|
2004-01-05 16:33:48 +03:00
|
|
|
# A special case is an +Exception+ object, which will be printed in detail,
|
|
|
|
# including message, class, and backtrace. See #msg2str for the
|
|
|
|
# implementation if required.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# === Bugs
|
|
|
|
#
|
|
|
|
# * Logfile is not locked.
|
|
|
|
# * Append open does not need to lock file.
|
2012-07-18 04:27:04 +04:00
|
|
|
# * If the OS supports multi I/O, records possibly may be mixed.
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
2016-02-09 10:41:51 +03:00
|
|
|
def add(severity, message = nil, progname = nil)
|
2003-09-18 10:31:25 +04:00
|
|
|
severity ||= UNKNOWN
|
|
|
|
if @logdev.nil? or severity < @level
|
|
|
|
return true
|
|
|
|
end
|
2017-07-20 19:47:26 +03:00
|
|
|
if progname.nil?
|
|
|
|
progname = @progname
|
|
|
|
end
|
2004-01-05 16:33:48 +03:00
|
|
|
if message.nil?
|
2003-09-18 10:31:25 +04:00
|
|
|
if block_given?
|
2009-10-20 19:08:38 +04:00
|
|
|
message = yield
|
2003-09-18 10:31:25 +04:00
|
|
|
else
|
2009-10-20 19:08:38 +04:00
|
|
|
message = progname
|
|
|
|
progname = @progname
|
2003-09-18 10:31:25 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
@logdev.write(
|
2005-09-13 17:13:41 +04:00
|
|
|
format_message(format_severity(severity), Time.now, progname, message))
|
2011-05-19 04:07:25 +04:00
|
|
|
true
|
2003-09-18 10:31:25 +04:00
|
|
|
end
|
|
|
|
alias log add
|
|
|
|
|
2003-09-23 18:12:42 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# Dump given message to the log device without any formatting. If no log
|
|
|
|
# device exists, return +nil+.
|
2003-09-23 18:12:42 +04:00
|
|
|
#
|
|
|
|
def <<(msg)
|
2018-01-18 03:52:01 +03:00
|
|
|
@logdev&.write(msg)
|
2003-09-23 18:12:42 +04:00
|
|
|
end
|
|
|
|
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# Log a +DEBUG+ message.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# See #info for more information.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
|
|
|
def debug(progname = nil, &block)
|
|
|
|
add(DEBUG, nil, progname, &block)
|
|
|
|
end
|
|
|
|
|
2011-05-17 01:43:20 +04:00
|
|
|
#
|
|
|
|
# :call-seq:
|
|
|
|
# info(message)
|
2012-07-18 04:27:04 +04:00
|
|
|
# info(progname, &block)
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
|
|
|
# Log an +INFO+ message.
|
|
|
|
#
|
2012-07-18 04:27:04 +04:00
|
|
|
# +message+:: The message to log; does not need to be a String.
|
|
|
|
# +progname+:: In the block form, this is the #progname to use in the
|
|
|
|
# log message. The default can be set with #progname=.
|
|
|
|
# +block+:: Evaluates to the message to log. This is not evaluated unless
|
|
|
|
# the logger's level is sufficient to log the message. This
|
|
|
|
# allows you to create potentially expensive logging messages that
|
|
|
|
# are only called when the logger is configured to show them.
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
|
|
|
# === Examples
|
|
|
|
#
|
2004-03-26 19:47:16 +03:00
|
|
|
# logger.info("MainApp") { "Received connection from #{ip}" }
|
2004-01-05 16:33:48 +03:00
|
|
|
# # ...
|
|
|
|
# logger.info "Waiting for input from user"
|
|
|
|
# # ...
|
|
|
|
# logger.info { "User typed #{input}" }
|
|
|
|
#
|
|
|
|
# You'll probably stick to the second form above, unless you want to provide a
|
2011-05-17 01:43:20 +04:00
|
|
|
# program name (which you can do with #progname= as well).
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
|
|
|
# === Return
|
|
|
|
#
|
2004-03-26 19:47:16 +03:00
|
|
|
# See #add.
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
2003-09-18 10:31:25 +04:00
|
|
|
def info(progname = nil, &block)
|
|
|
|
add(INFO, nil, progname, &block)
|
|
|
|
end
|
|
|
|
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
|
|
|
# Log a +WARN+ message.
|
|
|
|
#
|
|
|
|
# See #info for more information.
|
|
|
|
#
|
2003-09-18 10:31:25 +04:00
|
|
|
def warn(progname = nil, &block)
|
|
|
|
add(WARN, nil, progname, &block)
|
|
|
|
end
|
|
|
|
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
|
|
|
# Log an +ERROR+ message.
|
|
|
|
#
|
|
|
|
# See #info for more information.
|
|
|
|
#
|
2003-09-18 10:31:25 +04:00
|
|
|
def error(progname = nil, &block)
|
|
|
|
add(ERROR, nil, progname, &block)
|
|
|
|
end
|
|
|
|
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
|
|
|
# Log a +FATAL+ message.
|
|
|
|
#
|
|
|
|
# See #info for more information.
|
|
|
|
#
|
2003-09-18 10:31:25 +04:00
|
|
|
def fatal(progname = nil, &block)
|
|
|
|
add(FATAL, nil, progname, &block)
|
|
|
|
end
|
|
|
|
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
2011-05-17 01:43:20 +04:00
|
|
|
# Log an +UNKNOWN+ message. This will be printed no matter what the logger's
|
2012-07-18 04:27:04 +04:00
|
|
|
# level is.
|
2004-01-05 16:33:48 +03:00
|
|
|
#
|
|
|
|
# See #info for more information.
|
|
|
|
#
|
2003-09-18 10:31:25 +04:00
|
|
|
def unknown(progname = nil, &block)
|
|
|
|
add(UNKNOWN, nil, progname, &block)
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
2004-01-05 16:33:48 +03:00
|
|
|
# Close the logging device.
|
2003-09-18 10:31:25 +04:00
|
|
|
#
|
|
|
|
def close
|
2018-01-18 03:52:01 +03:00
|
|
|
@logdev&.close
|
2003-09-18 10:31:25 +04:00
|
|
|
end
|
|
|
|
|
2011-05-19 04:07:25 +04:00
|
|
|
private
|
2003-09-18 10:31:25 +04:00
|
|
|
|
2012-07-18 04:27:04 +04:00
|
|
|
# Severity label for logging (max 5 chars).
|
2015-10-26 17:51:04 +03:00
|
|
|
SEV_LABEL = %w(DEBUG INFO WARN ERROR FATAL ANY).each(&:freeze).freeze
|
2003-09-18 10:31:25 +04:00
|
|
|
|
|
|
|
def format_severity(severity)
|
2003-09-20 06:51:06 +04:00
|
|
|
SEV_LABEL[severity] || 'ANY'
|
2003-09-18 10:31:25 +04:00
|
|
|
end
|
|
|
|
|
2005-09-13 17:13:41 +04:00
|
|
|
def format_message(severity, datetime, progname, msg)
|
|
|
|
(@formatter || @default_formatter).call(severity, datetime, progname, msg)
|
2003-09-18 10:31:25 +04:00
|
|
|
end
|
2004-01-06 14:55:08 +03:00
|
|
|
end
|