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 78383c7 commit 7d2d88fCopy full SHA for 7d2d88f
src/tests/libxrpl/basics/log.cpp
@@ -98,7 +98,6 @@ TEST_CASE("Text logs")
98
CHECK(logStream.str().find("\n") == std::string::npos);
99
}
100
101
-
102
TEST_CASE("Test format output")
103
{
104
std::string output;
src/tests/libxrpl/telemetry/json_logs.cpp
@@ -87,12 +87,8 @@ class JsonLogStreamFixture
87
88
TEST_CASE_FIXTURE(JsonLogStreamFixture, "TestJsonLogFields")
89
90
- journal().debug() << std::boolalpha
91
- << true
92
- << std::noboolalpha
93
- << " Test "
94
- << std::boolalpha
95
- << false;
+ journal().debug() << std::boolalpha << true << std::noboolalpha << " Test "
+ << std::boolalpha << false;
96
97
Json::Value logValue;
Json::Reader reader;
0 commit comments