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.
1 parent d38e5d2 commit 143a6cfCopy full SHA for 143a6cf
activesupport/test/tagged_logging_test.rb
@@ -72,11 +72,12 @@ def flush(*)
72
test "keeps each tag in their own thread" do
73
@logger.tagged("BCX") do
74
Thread.new do
75
+ @logger.info "Dull story"
76
@logger.tagged("OMG") { @logger.info "Cool story" }
77
end.join
78
@logger.info "Funky time"
79
end
- assert_equal "[OMG] Cool story\n[BCX] Funky time\n", @output.string
80
+ assert_equal "Dull story\n[OMG] Cool story\n[BCX] Funky time\n", @output.string
81
82
83
test "keeps each tag in their own instance" do
0 commit comments