X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/399a7727d537d5225f2c48613b1c67b50f31b9f2..46b9e6d14dd54341e0fc10781fba35077cfac9a9:/tools/graphicator/graphicator.c diff --git a/tools/graphicator/graphicator.c b/tools/graphicator/graphicator.c index 2f1a8878b8..72b8fceb5b 100644 --- a/tools/graphicator/graphicator.c +++ b/tools/graphicator/graphicator.c @@ -31,14 +31,14 @@ int main(int argc, char **argv) //creating the graph structure xbt_graph_t graph = TRACE_platform_graph(); if (graph == NULL){ - XBT_INFO ("%s expects --cfg=tracing:1", argv[0]); + XBT_INFO ("%s expects --cfg=tracing:1 --cfg=tracing/platform:1", argv[0]); }else{ TRACE_platform_graph_export_graphviz (graph, graphvizFile); XBT_INFO ("Output is in file %s", graphvizFile); } MSG_clean(); #else - XBT_INFO ("works only if simgrid has tracing enabled."); + XBT_INFO ("works only if simgrid was compiled with tracing enabled."); #endif return 0; }