logger fixes

This commit is contained in:
Sascha Kühl
2026-02-04 15:13:27 +01:00
parent 520b2bab49
commit 1a1ecd1613
8 changed files with 48 additions and 32 deletions
+2 -2
View File
@@ -31,8 +31,8 @@ std::ostream& operator<<(std::ostream &os, log_level lvl);
/// @cond MATADOR_DEV
struct log_level_range {
log_level min_level = log_level::Info;
log_level max_level = log_level::Fatal;
log_level min_level = log_level::Fatal;
log_level max_level = log_level::Info;
};
/// @endcond