Created
February 26, 2010 18:50
-
-
Save jberkel/316015 to your computer and use it in GitHub Desktop.
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
| 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