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

@@ -20,12 +20,12 @@ class MyTest : public deepstate::Test {
public:
void SetUp(void) {
LOG(INFO)
LOG(TRACE)
<< "Setting up!";
}
void TearDown(void) {
LOG(INFO)
LOG(TRACE)
<< "Tearing down!";
}