X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/795359a4a2c81571bb061f8dfbcc6c15323c9bf3..6c8dd229d394fdaf20facf604f7be86a5df1e368:/tools/graphicator/graphicator.c diff --git a/tools/graphicator/graphicator.c b/tools/graphicator/graphicator.c index a32e74ce1e..749419760e 100644 --- a/tools/graphicator/graphicator.c +++ b/tools/graphicator/graphicator.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2015. The SimGrid Team. +/* Copyright (c) 2008-2019. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -7,11 +7,8 @@ #include "simgrid/msg.h" #include "xbt/graph.h" -XBT_LOG_NEW_DEFAULT_CATEGORY(graphicator, "Graphicator Logging System"); - int main(int argc, char **argv) { - XBT_LOG_CONNECT(graphicator); MSG_init(&argc, argv); xbt_assert(argc == 3, "Usage: %s ", argv[0]); @@ -20,5 +17,6 @@ int main(int argc, char **argv) int status = TRACE_platform_graph_export_graphviz (argv[2]); xbt_assert(status != 0, "%s expects --cfg=tracing:yes --cfg=tracing/platform:yes", argv[0]); + MSG_main(); /* useless, except for correctly cleaning memory */ return 0; }