X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6366f4c5942aaaf7264d96aac038a4a7c9983195..e10bd21dc31e83417de6984b8790e7a147aaa7b5:/src/s4u/s4u_Engine.cpp diff --git a/src/s4u/s4u_Engine.cpp b/src/s4u/s4u_Engine.cpp index 2bcc793eee..0576607a7e 100644 --- a/src/s4u/s4u_Engine.cpp +++ b/src/s4u/s4u_Engine.cpp @@ -86,20 +86,15 @@ double Engine::get_clock() */ void Engine::load_platform(std::string platf) { - double start = 0; - double end = 0; - if (XBT_LOG_ISENABLED(s4u_engine, xbt_log_priority_debug)) - start = xbt_os_time(); + double start = xbt_os_time(); try { parse_platform_file(platf); } catch (xbt_ex& e) { xbt_die("Error while loading %s: %s", platf.c_str(), e.what()); } - if (XBT_LOG_ISENABLED(s4u_engine, xbt_log_priority_debug)) { - end = xbt_os_time(); - XBT_DEBUG("PARSE TIME: %g", (end - start)); - } + double end = xbt_os_time(); + XBT_DEBUG("PARSE TIME: %g", (end - start)); } void Engine::register_function(std::string name, int (*code)(int, char**))