aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/tagged_logging_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add respond_to_missing? for TaggedLogging which is needed if another log ↵Wolfram Arnold2013-07-171-0/+4
| | | | | | abstracter wraps a TaggedLogging instance. It's also best practice when overriding method_missing.
* Incorrectly providing program name the same as log message even when block ↵Carson Reinke2013-07-011-1/+11
| | | | is not provided.
* Add logger.push_tags and .pop_tags to complement logger.taggedJeremy Kemper2012-09-271-0/+27
| | | | | | | | | Avoid memory leak from unflushed logs on other threads leaving tags behind. Conflicts: activesupport/CHANGELOG.md activesupport/lib/active_support/tagged_logging.rb activesupport/test/tagged_logging_test.rb
* Fix GH #4760. A Block was not evaluated.kennyj2012-01-311-0/+8
|
* Remove deprecation warning from console output when runningWaseem Ahmad2012-01-221-1/+3
| | | | activesupport tests.
* Fix GH #4580. Rails 3.2: uninitialized constant ↵kennyj2012-01-221-0/+4
| | | | ActiveSupport::TaggedLogging::ERROR
* Checking blank if tag might coming nil or blankArun Agrawal2011-10-211-0/+5
| | | In log it should not show the empty array.
* Ensure TaggegLogging is thread safe.José Valim2011-10-191-1/+29
|
* Added X-Request-Id tracking and TaggedLogging to easily log that and other ↵David Heinemeier Hansson2011-10-191-0/+34
production concerns