From 1c58c7eb479e43cda12185a87ee07ef4d1ed3dc4 Mon Sep 17 00:00:00 2001 From: mquinson Date: Thu, 15 Jul 2010 14:30:51 +0000 Subject: [PATCH] fix example in the documentation git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@8028 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/xbt/log.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/xbt/log.c b/src/xbt/log.c index 44ff420946..31b809ffe1 100644 --- a/src/xbt/log.c +++ b/src/xbt/log.c @@ -269,17 +269,17 @@ int main() { xbt_log_control_set("SA.thresh:3"); / * This request is enabled, because WARNING >= INFO. * / - CWARN2(VSS, "Low fuel level."); + CWARN0(VSS, "Low fuel level."); / * This request is disabled, because DEBUG < INFO. * / - CDEBUG2(VSS, "Starting search for nearest gas station."); + CDEBUG0(VSS, "Starting search for nearest gas station."); / * The default category SA inherits its priority from VSS. Thus, the following request is enabled because INFO >= INFO. * / - INFO1("Located nearest gas station."); + INFO0("Located nearest gas station."); / * This request is disabled, because DEBUG < INFO. * / - DEBUG1("Exiting gas station search"); + DEBUG0("Exiting gas station search"); } \endverbatim -- 2.20.1