You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: