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 / msg / task.c
index b14d7c8..8dd6016 100644 (file)
  *  <em>message size</em> and some <em>private data</em>.
  */
 
+#ifdef HAVE_RUBY /* FIXME: KILLME */
+XBT_LOG_EXTERNAL_CATEGORY(ruby);
+#endif
+
 /********************************* Task **************************************/
 /** \ingroup m_task_management
  * \brief Creates a new #m_task_t.
@@ -73,7 +77,9 @@ m_task_t MSG_task_create(const char *name, double compute_duration,
   simdata->comp_amount = NULL;
   simdata->comm_amount = NULL;
 
-  CINFO2(root,"Created task %p: %s",task,name);
+#ifdef HAVE_RUBY /* FIXME: KILLME */
+  CINFO2(ruby,"Created task %p: %s",task,name);
+#endif
 
   return task;
 }