Skip to content

Instantly share code, notes, and snippets.

@jberkel
Created February 26, 2010 18:50
Show Gist options
  • Select an option

  • Save jberkel/316015 to your computer and use it in GitHub Desktop.

Select an option

Save jberkel/316015 to your computer and use it in GitHub Desktop.
module ActionController
module Session
class CookieStore
def load_session_with_logging(env)
# require 'pp'
# pp caller
load_session_without_logging(env)
end
alias_method_chain :load_session, :logging
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment