Last active
August 11, 2020 23:45
-
-
Save elainenaomi/ea7e6ea29f867cfcebe7f7b87b0ff94b to your computer and use it in GitHub Desktop.
redirecting log
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rails.logger.tagged(:tag_name) do | |
logger = Logger.new(STDOUT) | |
# log both to Rails logger and to STDOUT | |
logger.extend(ActiveSupport::Logger.broadcast(Rails.logger)) | |
# my code | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment