From cc123939ce2dcfd2ee24ea8277d9642454ded260 Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Mon, 31 Mar 2025 09:52:39 +0200 Subject: [PATCH] configures logger in main --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 55d3f5b..3f21041 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -40,6 +40,7 @@ #include #include "iss/arch/tgc_mapper.h" +#include "util/logging.h" #include #include #ifdef WITH_LLVM @@ -258,6 +259,7 @@ int main(int argc, char* argv[]) { LOG(ERR) << "Error opening file " << filename << std::endl; return 1; } + LOGGER(DEFAULT)::reporting_level() = logging::ERR; for(auto addr = start_addr; addr < end_addr; addr += data.size()) { vm->get_arch()->read(iss::address_type::PHYSICAL, iss::access_type::DEBUG_READ, 0 /*MEM*/, addr, data.size(), data.data()); // FIXME: get space from iss::arch::traits::mem_type_e::MEM