src/core/model/make-event.cc
changeset 9134 7a750f032acd
parent 6821 203367ae7433
child 10968 2d29fee2b7b8
--- a/src/core/model/make-event.cc	Sat Nov 10 18:45:37 2012 +0100
+++ b/src/core/model/make-event.cc	Sat Nov 10 19:16:38 2012 +0100
@@ -1,9 +1,13 @@
 #include "make-event.h"
+#include "log.h"
+
+NS_LOG_COMPONENT_DEFINE ("MakeEvent");
 
 namespace ns3 {
 
 EventImpl * MakeEvent (void (*f)(void))
 {
+  NS_LOG_FUNCTION (f);
   // zero arg version
   class EventFunctionImpl0 : public EventImpl
   {