tizen 2.4 release
[framework/web/wrt-commons.git] / examples / timed_event / timed_event.cpp
index f3d8e80..3148088 100644 (file)
@@ -25,7 +25,7 @@
 #include <dpl/controller.h>
 #include <dpl/type_list.h>
 #include <dpl/thread.h>
-#include <dpl/log/log.h>
+#include <dpl/log/wrt_log.h>
 #include <string>
 
 DECLARE_GENERIC_EVENT_0(FirstEvent)
@@ -39,13 +39,13 @@ protected:
     virtual void OnEventReceived(const FirstEvent &event)
     {
         (void)event;
-        LogDebug("First event occurred");
+        WrtLogD("First event occurred");
     }
 
     virtual void OnEventReceived(const SecondEvent &event)
     {
         (void)event;
-        LogDebug("Second event occurred");
+        WrtLogD("Second event occurred");
     }
 };