From ff9b1ea5bf9f573a0f5c865a0b6b86ec70cc3bcd Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Thu, 15 Sep 2022 09:57:29 -0400 Subject: [PATCH] Manual configuration of Log settings is no longer needed. --- src/mlpack/tests/main.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/mlpack/tests/main.cpp b/src/mlpack/tests/main.cpp index 3267ae850d..1be4b0d6c2 100644 --- a/src/mlpack/tests/main.cpp +++ b/src/mlpack/tests/main.cpp @@ -8,7 +8,6 @@ * 3-clause BSD license along with mlpack. If not, see * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ -#include #include // #define CATCH_CONFIG_MAIN // catch.hpp will define main() @@ -24,19 +23,10 @@ int main(int argc, char** argv) */ // size_t seed = std::time(NULL); // mlpack::math::RandomSeed(seed); - #ifndef TEST_VERBOSE - #ifdef DEBUG - mlpack::Log::Debug.ignoreInput = true; - #endif - - mlpack::Log::Info.ignoreInput = true; - mlpack::Log::Warn.ignoreInput = true; - #endif std::cout << "mlpack version: " << mlpack::util::GetVersion() << std::endl; std::cout << "armadillo version: " << arma::arma_version::as_string() << std::endl; - return Catch::Session().run(argc, argv); }