From: Arnaud Giersch Date: Mon, 24 Jan 2011 17:03:43 +0000 (+0100) Subject: Use verbose level for logging results of final checks on total load. X-Git-Tag: v0.1~188^2~19 X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/commitdiff_plain/69ea6636935b8fae72f3915d521eeb2b12aabd34?ds=inline Use verbose level for logging results of final checks on total load. --- 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); }