From b3fb12e962740df1c663a392d34b0078e34d0195 Mon Sep 17 00:00:00 2001 From: Christopher Lackner Date: Tue, 8 Oct 2019 16:51:32 +0200 Subject: [PATCH] reduce message and log level in python --- libsrc/core/logging.cpp | 2 +- libsrc/meshing/msghandler.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/core/logging.cpp b/libsrc/core/logging.cpp index cedc99c4..b5056406 100644 --- a/libsrc/core/logging.cpp +++ b/libsrc/core/logging.cpp @@ -15,7 +15,7 @@ namespace ngcore { std::ostream* testout = new std::ostream(nullptr); // NOLINT - level::level_enum Logger::global_level; + level::level_enum Logger::global_level = level::warn; void Logger::log(level::level_enum level, std::string && s) { diff --git a/libsrc/meshing/msghandler.cpp b/libsrc/meshing/msghandler.cpp index 191384f5..d4da2c60 100644 --- a/libsrc/meshing/msghandler.cpp +++ b/libsrc/meshing/msghandler.cpp @@ -3,7 +3,7 @@ namespace netgen { -int printmessage_importance = 5; +int printmessage_importance = 3; int printwarnings = 1; int printerrors = 1; int printdots = 1;