forked from graylog-labs/gelf-rb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add tagged logging support Implement tagged logging similar to ActiveSupport::TaggedLogging. * Use log_tags attribute on logger Don't use the default_options to pass the tags into the logger. This causes the tags field to be sent over to graylog as an array. Instead pass the tag names into an attribute called log_tags that matches with the Rails standard of config.log_tags. * Replace Thread#[] with Thread#thread_variable_get/set * Skip log tags tests for Ruby 1.9 * Fix CI for JRuby Co-authored-by: Mark Glenn <[email protected]> Co-authored-by: Marcus Ilgner <[email protected]> Co-authored-by: Vladimir Kitaev <[email protected]> Co-authored-by: Mark Glenn <[email protected]> Co-authored-by: Marcus Ilgner <[email protected]> Co-authored-by: Vladimir Kitaev <[email protected]>
- Loading branch information
1 parent
eb2d31c
commit d7f194c
Showing
3 changed files
with
69 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,3 @@ DEPENDENCIES | |
rack (< 2.0) | ||
shoulda (~> 2.11.3) | ||
test-unit (~> 3.2.0) | ||
|
||
BUNDLED WITH | ||
1.14.6 |
This file contains 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
This file contains 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