Skip to content

Instantly share code, notes, and snippets.

@solars

solars/test.rb Secret

Last active July 26, 2016 08:14
Show Gist options
  • Save solars/df2708e5147b0f47e74e4c25de8868c2 to your computer and use it in GitHub Desktop.
Save solars/df2708e5147b0f47e74e4c25de8868c2 to your computer and use it in GitHub Desktop.
# Rails.logger
# => Log4r::Logger
module CustomWrapper
def error(input)
puts 'wrapped'
end
end
class Log4r::Logger
prepend CustomWrapper
end
Rails.logger.error
# => same as before
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment