diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 791d713a2..6cfd5e952 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -73,7 +73,8 @@ Bugs fixed for ns3::UdpSocketImpl::IcmpCallback - bug 1475 - "test.py --list" should sort the output - bug 1476 - TestCase::GetName () should not be private - - Bug 1477 - Click doesn't work with raw sockets + - bug 1477 - Click doesn't work with raw sockets + - bug 1489 - Jakes Log component is missing - fixed bug with multiple LCs in UL BSR - fixed bug with lena-dual-stripe crashes with --homeUesHomeEnbRatio=2 diff --git a/src/propagation/model/jakes-process.cc b/src/propagation/model/jakes-process.cc index bd9072a3f..374132229 100644 --- a/src/propagation/model/jakes-process.cc +++ b/src/propagation/model/jakes-process.cc @@ -21,10 +21,13 @@ #include "jakes-process.h" #include "ns3/simulator.h" #include "ns3/double.h" +#include "ns3/log.h" #include "ns3/uinteger.h" #include "propagation-loss-model.h" #include "jakes-propagation-loss-model.h" +NS_LOG_COMPONENT_DEFINE ("JakesProcess"); + namespace ns3 { /// Represents a single oscillator diff --git a/src/propagation/model/jakes-propagation-loss-model.cc b/src/propagation/model/jakes-propagation-loss-model.cc index 146759166..eba42c84a 100644 --- a/src/propagation/model/jakes-propagation-loss-model.cc +++ b/src/propagation/model/jakes-propagation-loss-model.cc @@ -20,6 +20,9 @@ #include "jakes-propagation-loss-model.h" #include "ns3/double.h" +#include "ns3/log.h" + +NS_LOG_COMPONENT_DEFINE ("Jakes"); namespace ns3 {