Created
June 14, 2015 11:24
-
-
Save mxmzb/53d04d05aba77a848eee to your computer and use it in GitHub Desktop.
lograge initializer
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.application.configure do | |
| config.lograge.enabled = true | |
| # add time to lograge | |
| config.lograge.custom_options = lambda do |event| | |
| { :time => event.time, :user => (user_signed_in? ? "User##{current_user.id}" : "Guest") } | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment