try changing test output to TRACE

This commit is contained in:
Alex Groce
2018-12-22 13:44:43 -07:00
parent 1227092089
commit 7756c80d63
4 changed files with 24 additions and 20 deletions

View File

@@ -18,19 +18,20 @@
TEST(Streaming, BasicLevels) {
LOG(DEBUG) << "This is a debug message";
LOG(INFO) << "This is an info message";
LOG(TRACE) << "This is a trace message";
LOG(INFO) << "This is an info message";
LOG(WARNING) << "This is a warning message";
LOG(ERROR) << "This is a error message";
LOG(INFO) << "This is a info message again";
LOG(TRACE) << "This is a trace message again";
ASSERT(true) << "This should not be printed.";
}
TEST(Streaming, BasicTypes) {
LOG(INFO) << 'a';
LOG(INFO) << 1;
LOG(INFO) << 1.0;
LOG(INFO) << "string";
LOG(INFO) << nullptr;
LOG(TRACE) << 'a';
LOG(TRACE) << 1;
LOG(TRACE) << 1.0;
LOG(TRACE) << "string";
LOG(TRACE) << nullptr;
}
TEST(Formatting, OverridePrintf) {