fixes quantum_keeper test to adhere to chnaged logging
Some checks failed
SCC Test/pipeline/head There was a failure building this commit

This commit is contained in:
2025-11-09 07:30:07 +01:00
parent a8c1295c73
commit 5805d19cf0
2 changed files with 1 additions and 2 deletions

2
scc

Submodule scc updated: 9e1b18db3f...bf3b4e5179

View File

@@ -24,7 +24,6 @@ int sc_main(int argc, char* argv[]) {
auto level = getenv("SCC_TEST_VERBOSE"); auto level = getenv("SCC_TEST_VERBOSE");
auto log_lvl = level ? static_cast<scc::log>(std::min(strtoul(level, nullptr, 10), 7UL)) : log::FATAL; auto log_lvl = level ? static_cast<scc::log>(std::min(strtoul(level, nullptr, 10), 7UL)) : log::FATAL;
scc::init_logging(LogConfig().logLevel(log_lvl).logAsync(false).msgTypeFieldWidth(35).printSysTime()); scc::init_logging(LogConfig().logLevel(log_lvl).logAsync(false).msgTypeFieldWidth(35).printSysTime());
LOGGER(DEFAULT)::reporting_level().store(logging::TRACEALL);
scc::configurer cfg(""); scc::configurer cfg("");
// create tracer if environment variable SCC_TEST_TRACE is defined // create tracer if environment variable SCC_TEST_TRACE is defined
std::unique_ptr<scc::tracer> tracer; std::unique_ptr<scc::tracer> tracer;