X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/b78d5563826957045678f4c3bcfdcef6c9bfc48d..a2555a351393901a2e5398707e473cb062eed578:/hostdata.cpp?ds=sidebyside diff --git a/hostdata.cpp b/hostdata.cpp index 3ac7b0b..787b7ab 100644 --- a/hostdata.cpp +++ b/hostdata.cpp @@ -1,14 +1,15 @@ -#include "hostdata.h" - #include #include #include #include #include + +XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(main); + #include "misc.h" #include "options.h" -XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(main); +#include "hostdata.h" std::vector hostdata::hosts; @@ -35,9 +36,9 @@ void hostdata::create() e_xbt_log_priority_t logp = xbt_log_priority_verbose; if (!LOG_ISENABLED(logp)) return; - LOG1(logp, "Got %lu hosts.", (unsigned long)hosts.size()); + XBT_LOG(logp, "Got %zu hosts.", hosts.size()); for (int i = 0; i < nhosts; i++) { - LOG2(logp, "Host #%d named \"%s\".", i, hosts[i].get_name()); + XBT_LOG(logp, "Host #%d named \"%s\".", i, hosts[i].get_name()); } }