From fd8108d1a15943f3d22793f2a711a29b7d84d220 Mon Sep 17 00:00:00 2001
From: Giovanni La Mura <giovanni.lamura@inaf.it>
Date: Tue, 14 May 2024 19:25:22 +0200
Subject: [PATCH] Put all loggers to debug level

---
 src/cluster/cluster.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/cluster/cluster.cpp b/src/cluster/cluster.cpp
index 1738c588..22cf940e 100644
--- a/src/cluster/cluster.cpp
+++ b/src/cluster/cluster.cpp
@@ -86,7 +86,7 @@ void cluster(const string& config_file, const string& data_file, const string& o
   string timing_name = output_path + "/c_timing_mpi"+ to_string(mpidata->rank) +".log";
   FILE *timing_file = fopen(timing_name.c_str(), "w");
   Logger *time_logger = new Logger(LOG_DEBG, timing_file);
-  Logger *logger = new Logger(LOG_INFO);
+  Logger *logger = new Logger(LOG_DEBG);
 #ifdef USE_MAGMA
   logger->log("INFO: Process " + to_string(mpidata->rank) + " initializes MAGMA.\n");
   magma_init();
@@ -533,7 +533,7 @@ int cluster_jxi488_cycle(int jxi488, ScattererConfiguration *sconf, GeometryConf
 {
   int nxi = sconf->number_of_scales;
   string message = "INFO: running scale iteration " + to_string(jxi488) + " of " + to_string(nxi) + ".\n";
-  Logger *logger = new Logger(LOG_INFO);
+  Logger *logger = new Logger(LOG_DEBG);
   logger->log(message);
   chrono::duration<double> elapsed;
   chrono::time_point<chrono::high_resolution_clock> interval_start, interval_end;
-- 
GitLab