Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bummer: I increased the amount of displayed info to track down an issue in ruby,...
[simgrid.git] / src / simix / smx_network.c
index 1089d17..de7af8c 100644 (file)
@@ -339,11 +339,19 @@ void SIMIX_network_copy_data(smx_comm_t comm)
   if(buff_size == 0)
     return;
 
   if(buff_size == 0)
     return;
 
+#ifdef HAVE_RUBY /* FIXME: KILLME */
   INFO6("Copying comm %p data from %s (%p) -> %s (%p) (%zu bytes)",
   INFO6("Copying comm %p data from %s (%p) -> %s (%p) (%zu bytes)",
-         comm,
-         comm->src_proc->smx_host->name, comm->src_buff,
-         comm->dst_proc->smx_host->name, comm->dst_buff,
-         buff_size);
+      comm,
+      comm->src_proc->smx_host->name, comm->src_buff,
+      comm->dst_proc->smx_host->name, comm->dst_buff,
+      buff_size);
+#else
+  DEBUG6("Copying comm %p data from %s (%p) -> %s (%p) (%zu bytes)",
+      comm,
+      comm->src_proc->smx_host->name, comm->src_buff,
+      comm->dst_proc->smx_host->name, comm->dst_buff,
+      buff_size);
+#endif
 
   memcpy(comm->dst_buff, comm->src_buff, buff_size);
 }
 
   memcpy(comm->dst_buff, comm->src_buff, buff_size);
 }