From 98df7d2a7450a4cc0c0afb65c45098452eefe23c Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Fri, 22 Aug 2025 17:54:31 +0200 Subject: [PATCH] ties iss logging level to command line setting --- src/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 3f21041..1eb5d1a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -99,9 +99,12 @@ int main(int argc, char* argv[]) { LOGGER(DEFAULT)::print_time() = false; LOGGER(connection)::print_time() = false; + LOGGER(dbt_rise_iss)::print_time() = false; + auto l = logging::as_log_level(clim["verbose"].as()); LOGGER(DEFAULT)::reporting_level() = l; LOGGER(connection)::reporting_level() = l; + LOGGER(dbt_rise_iss)::reporting_level() = l; if(clim.count("logfile")) { // configure the connection logger auto f = fopen(clim["logfile"].as().c_str(), "w");