From 69ea6636935b8fae72f3915d521eeb2b12aabd34 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Mon, 24 Jan 2011 18:03:43 +0100 Subject: [PATCH] Use verbose level for logging results of final checks on total load. --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index b5ab711..5da797a 100644 --- a/main.cpp +++ b/main.cpp @@ -79,7 +79,7 @@ static void check_for_lost_load() CRITICAL2("Lost load at exit! %g (%g%%) <============", lost, lost_ratio); else - DEBUG2("Total load at exit looks good: %g (%g%%)", lost, lost_ratio); + VERB2("Total load at exit looks good: %g (%g%%)", lost, lost_ratio); double total_running = process::get_total_load_running(); double running_ratio = 100.0 * total_running / total_init; @@ -90,7 +90,7 @@ static void check_for_lost_load() CRITICAL2("Remaining running load at exit! %g (%g%%) <============", total_running, running_ratio); else - DEBUG2("Running load at exit looks good: %g (%g%%)", + VERB2("Running load at exit looks good: %g (%g%%)", total_running, running_ratio); } -- 2.39.5