From: mquinson Date: Wed, 23 Feb 2005 14:00:22 +0000 (+0000) Subject: increase debugging verbosity X-Git-Tag: v3.3~4299 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/055e9f4538b81aad717a89653a05730759062fb1 increase debugging verbosity git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1053 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/gras/Transport/sg_transport.c b/src/gras/Transport/sg_transport.c index d9575baced..8567f36e33 100644 --- a/src/gras/Transport/sg_transport.c +++ b/src/gras/Transport/sg_transport.c @@ -128,17 +128,20 @@ gras_trp_select(double timeout, return no_error; } else { - /* - DEBUG2("Select on %s@%s did not find anything yet", + + DEBUG5("Select on %s@%s did not find anything yet at %f (waited %f of %f sec)", MSG_process_get_name(MSG_process_self()), - MSG_host_get_name(MSG_host_self())); - */ + MSG_host_get_name(MSG_host_self()), + gras_os_time(), + gras_os_time()-startTime , timeout); + /* MSG_process_sleep(1); */ MSG_process_sleep(0.001); } } while (gras_os_time()-startTime < timeout || MSG_task_Iprobe((m_channel_t) pd->chan)); + DEBUG0("TIMEOUT"); return timeout_error; }