tizen 2.4 release
[framework/web/wrt-commons.git] / modules / dbus / include / dpl / dbus / dbus_interface_dispatcher.h
@@ -25,7 +25,7 @@
 #define DPL_DBUS_DBUS_INTERFACE_DISPATCHER_H_
 
 #include <string>
-#include <dpl/log/log.h>
+#include <dpl/log/wrt_log.h>
 #include <dpl/dbus/dispatcher.h>
 
 namespace DPL {
@@ -70,8 +70,8 @@ class InterfaceDispatcher : public DBus::Dispatcher
         if (g_strcmp0(interfaceName, m_interfaceName.c_str()) == 0) {
             onMethodCall(methodName, parameters, invocation);
         } else {
-            LogPedantic("Called invalid interface: " << interfaceName <<
-                        " instead of: " << m_interfaceName);
+            WrtLogD("Called invalid interface: %s instead of: %s",
+                interfaceName, m_interfaceName.c_str());
         }
     }
 
@@ -81,7 +81,7 @@ class InterfaceDispatcher : public DBus::Dispatcher
                                     const gchar* /*interfaceName*/,
                                     const gchar* propertyName)
     {
-        LogDebug("InterfaceDispatcher onPropertyGet: " << propertyName);
+        WrtLogD("InterfaceDispatcher onPropertyGet: %s", propertyName);
         return NULL;
     }
 
@@ -92,7 +92,7 @@ class InterfaceDispatcher : public DBus::Dispatcher
                                    const gchar* propertyName,
                                    GVariant* /*value*/)
     {
-        LogDebug("InterfaceDispatcher onPropertySet: " << propertyName);
+        WrtLogD("InterfaceDispatcher onPropertySet: %s", propertyName);
         return false;
     }