reduce message and log level in python

This commit is contained in:
Christopher Lackner 2019-10-08 16:51:32 +02:00
parent cedc0657a3
commit b3fb12e962
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ namespace ngcore
{ {
std::ostream* testout = new std::ostream(nullptr); // NOLINT 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) void Logger::log(level::level_enum level, std::string && s)
{ {

View File

@ -3,7 +3,7 @@
namespace netgen namespace netgen
{ {
int printmessage_importance = 5; int printmessage_importance = 3;
int printwarnings = 1; int printwarnings = 1;
int printerrors = 1; int printerrors = 1;
int printdots = 1; int printdots = 1;