From: alegrand Date: Wed, 12 Jul 2006 23:25:41 +0000 (+0000) Subject: Fix log message with respect to our recent unit modifications. X-Git-Tag: v3.3~2801 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/79fc0bd8a433ccf51f3b5020d77d81788fddbf9e?ds=sidebyside Fix log message with respect to our recent unit modifications. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2557 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/msg/gos.c b/src/msg/gos.c index 678e3af30b..379ca36228 100644 --- a/src/msg/gos.c +++ b/src/msg/gos.c @@ -438,8 +438,8 @@ MSG_error_t MSG_task_put_with_timeout(m_task_t task, m_host_t dest, local_host = ((simdata_process_t) process->simdata)->host; remote_host = dest; - DEBUG4("Trying to send a task (%g Mb) from %s to %s on channel %d", - task->simdata->message_size,local_host->name, remote_host->name, channel); + DEBUG4("Trying to send a task (%g kB) from %s to %s on channel %d", + task->simdata->message_size/1000,local_host->name, remote_host->name, channel); xbt_fifo_push(((simdata_host_t) remote_host->simdata)-> mbox[channel], task);