From: Arnaud Giersch Date: Mon, 7 Feb 2011 10:40:56 +0000 (+0100) Subject: Use ERROR instead of CRITICAL for total load error. X-Git-Tag: v0.1~166 X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/commitdiff_plain/1d7c1a60e26c062eb5a9f76870ed4bb0dbebf267?ds=sidebyside Use ERROR instead of CRITICAL for total load error. --- diff --git a/main.cpp b/main.cpp index ee845d1..0aa4327 100644 --- a/main.cpp +++ b/main.cpp @@ -87,22 +87,22 @@ static void check_for_lost_load() double lost = total_init - total_exit; double lost_ratio = 100.0 * lost / total_init; if (lost_ratio < -opt::load_ratio_threshold) - XBT_CRITICAL("Gained load at exit! %g (%g%%) <============", - -lost, -lost_ratio); + XBT_ERROR("Gained load at exit! %g (%g%%) <============", + -lost, -lost_ratio); else if (lost_ratio > opt::load_ratio_threshold) - XBT_CRITICAL("Lost load at exit! %g (%g%%) <============", - lost, lost_ratio); + XBT_ERROR("Lost load at exit! %g (%g%%) <============", + lost, lost_ratio); else XBT_VERB("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; if (running_ratio < -opt::load_ratio_threshold) - XBT_CRITICAL("Negative running load at exit! %g (%g%%) <============", - total_running, running_ratio); + XBT_ERROR("Negative running load at exit! %g (%g%%) <============", + total_running, running_ratio); else if (running_ratio > opt::load_ratio_threshold) - XBT_CRITICAL("Remaining running load at exit! %g (%g%%) <============", - total_running, running_ratio); + XBT_ERROR("Remaining running load at exit! %g (%g%%) <============", + total_running, running_ratio); else XBT_VERB("Running load at exit looks good: %g (%g%%)", total_running, running_ratio);