From 3910bb4b6962a87e02b05acbf7cc32f7e192a96b Mon Sep 17 00:00:00 2001 From: mquinson Date: Mon, 10 Sep 2007 15:14:01 +0000 Subject: [PATCH] Only output the elapsed time at verbose level, so that we don't see it during make check (this value changes in RL from run to run, of course, and cannot be strictly checked). Lionel, just increase the verbosity of the processes to see it again git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4145 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- examples/gras/mutual_exclusion/simple_token/simple_token.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/gras/mutual_exclusion/simple_token/simple_token.c b/examples/gras/mutual_exclusion/simple_token/simple_token.c index 7a0e2d4092..9f0336192a 100644 --- a/examples/gras/mutual_exclusion/simple_token/simple_token.c +++ b/examples/gras/mutual_exclusion/simple_token/simple_token.c @@ -95,7 +95,7 @@ static int node_cb_stoken_handler(gras_msg_cb_ctx_t ctx, void *payload) { if (globals->remaining_loop == -1 && globals->create) { double elapsed = gras_os_time() - globals->start_time; INFO1("Shut down the token-ring. There was %d hops.",msg); - INFO1("Elapsed time: %g", elapsed); + VERB1("Elapsed time: %g", elapsed); } /* 9. Tell GRAS that we consummed this message */ -- 2.20.1