X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6de03ecc4e630732984a0673512a5d15fd75e270..649ff8bac9ec72bc9321a7b21843cd41f7b7e7bc:/src/surf/ns3/my-point-to-point-helper.cc diff --git a/src/surf/ns3/my-point-to-point-helper.cc b/src/surf/ns3/my-point-to-point-helper.cc index b5a80b8929..7ac53db2b9 100644 --- a/src/surf/ns3/my-point-to-point-helper.cc +++ b/src/surf/ns3/my-point-to-point-helper.cc @@ -24,7 +24,6 @@ */ #include -#include "ns3/log.h" #include "ns3/simulator.h" #include "ns3/point-to-point-net-device.h" #include "ns3/point-to-point-channel.h" @@ -40,7 +39,9 @@ #include "ns3/trace-helper.h" #include "my-point-to-point-helper.h" -NS_LOG_COMPONENT_DEFINE ("MyPointToPointHelper"); +#include "xbt/log.h" + +XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(ns3); ///> RED Parameters see src/node/red-queue.* for details //.AddAttribute ("Mode", @@ -163,7 +164,7 @@ MyPointToPointHelper::EnablePcapInternal (std::string prefix, Ptr nd, Ptr device = nd->GetObject (); if (device == 0) { - NS_LOG_INFO ("MyPointToPointHelper::EnablePcapInternal(): Device " << device << " not of type ns3::PointToPointNetDevice"); + XBT_INFO ("MyPointToPointHelper::EnablePcapInternal(): Device not of type ns3::PointToPointNetDevice"); return; } @@ -199,8 +200,7 @@ MyPointToPointHelper::EnableAsciiInternal ( Ptr device = nd->GetObject (); if (device == 0) { - NS_LOG_INFO ("MyPointToPointHelper::EnableAsciiInternal(): Device " << device << - " not of type ns3::PointToPointNetDevice"); + XBT_INFO ("MyPointToPointHelper::EnableAsciiInternal(): Device not of type ns3::PointToPointNetDevice"); return; }