We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cb9e35e + 9ce2405 commit 4d99720Copy full SHA for 4d99720
activesupport/test/tagged_logging_test.rb
@@ -74,11 +74,12 @@ def flush(*)
74
test "keeps each tag in their own thread" do
75
@logger.tagged("BCX") do
76
Thread.new do
77
+ @logger.info "Dull story"
78
@logger.tagged("OMG") { @logger.info "Cool story" }
79
end.join
80
@logger.info "Funky time"
81
end
- assert_equal "[OMG] Cool story\n[BCX] Funky time\n", @output.string
82
+ assert_equal "Dull story\n[OMG] Cool story\n[BCX] Funky time\n", @output.string
83
84
85
test "keeps each tag in their own instance" do
0 commit comments