log4r
log4r copied to clipboard
Implement <<
The built in ruby logger has a << method that is not implemented by Log4r. We are able to get around the issue for our needs by monkey patching as follows, but that is not a generic solution:
class Log4r::Logger
def <<(message)
info(message)
end
end