Disable API logging in tests and validator

To prevent console spam.
This commit is contained in:
Oliver Hamlet
2017-02-06 18:03:40 +00:00
parent 9a0338a681
commit f4424bfbfa
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -39,6 +39,7 @@ int main(int argc, char **argv) {
//Disable logging or else stdout will get overrun.
boost::log::core::get()->set_logging_enabled(false);
loot::SetLoggingVerbosity(loot::LogVerbosity::off);
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
+1
View File
@@ -38,6 +38,7 @@ int main(int argc, char **argv) {
//Disable logging or else stdout will get overrun.
boost::log::core::get()->set_logging_enabled(false);
loot::SetLoggingVerbosity(loot::LogVerbosity::off);
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();