Project

General

Profile

Actions

Feature #11955

open

Expose Object that Receives logs in Logger

Added by schneems (Richard Schneeman) about 8 years ago. Updated over 1 year ago.

Status:
Assigned
Target version:
-
[ruby-core:72725]

Description

I need to be able to perform logic based on the destination of a current logger, this is currently not possible without instance_variable_get. Why would you need to see what destination a logger is going to? There is a common pattern in long lived programs like webservers. You want logs on disk for later reference, but you also want them in STDOUT to make development and debugging easier. Rails does this in development mode. Since there is no way to see if a logger is already going to STDOUT, it gets extended to log to STDOUT so logs show up twice.

While that example was complicated the logic I want is very simple: if you have a logger that is logging to STDOUT, do nothing, otherwise log to STDOUT and current logger. You cannot do this today without exposing the destination of the logger. This patch exposes the logger destination and allows us to write code like this:

def make_sure_logging_to_stdout(logger)
  unless logger.destination == STDOUT   # <==== Cannot do this today
    stdout_logger = ::Logger.new(STDOUT)
    logger.extend(Module do
      def add((*args, &block)
        stdout_logger.add(*args, &block)
        super(*args, &block)
      end
    end)
  end
end

logger = Logger.new(STDOUT)
make_sure_logging_to_stdout(logger)

logger.fatal("An error has occured")

We should be able to inspect the destination of a logger, this patch enables this functionality.


Files

ruby-changes.patch (1.04 KB) ruby-changes.patch schneems (Richard Schneeman), 01/05/2016 09:58 PM
ruby-changes.patch (2.17 KB) ruby-changes.patch schneems (Richard Schneeman), 01/19/2016 08:02 PM
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0