Skip to content

Instantly share code, notes, and snippets.

@mxmzb
Created June 14, 2015 11:24
Show Gist options
  • Select an option

  • Save mxmzb/53d04d05aba77a848eee to your computer and use it in GitHub Desktop.

Select an option

Save mxmzb/53d04d05aba77a848eee to your computer and use it in GitHub Desktop.
lograge initializer
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