diff --git a/src/cluster/cluster.cpp b/src/cluster/cluster.cpp
index 1738c588c3734f919ba36652a5b86c064e520c96..22cf940e392a4a49969a14c068fbd43547839756 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;