tizen 2.4 release
[framework/web/wrt-commons.git] / modules / custom_handler_dao / dao / custom_handler_dao_read_only.cpp
@@ -67,7 +67,7 @@ CustomHandlerPtr CustomHandlerDAOReadOnly::getProtocolHandler(
     const DPL::String& protocol,
     const DPL::String& url)
 {
-    LogDebug("Getting protocol handler");
+    WrtLogD("Getting protocol handler");
     Try {
         CUSTOM_HANDLER_DB_SELECT(select, ProtocolHandlers);
 
@@ -87,7 +87,7 @@ CustomHandlerPtr CustomHandlerDAOReadOnly::getContentHandler(
     const DPL::String& content,
     const DPL::String& url)
 {
-    LogDebug("Getting content handler");
+    WrtLogD("Getting content handler");
     Try {
         CUSTOM_HANDLER_DB_SELECT(select, ContentHandlers);
 
@@ -106,7 +106,7 @@ CustomHandlerPtr CustomHandlerDAOReadOnly::getContentHandler(
 CustomHandlerPtr CustomHandlerDAOReadOnly::getActivProtocolHandler(
     const DPL::String& protocol)
 {
-    LogDebug("Getting active protocol handler");
+    WrtLogD("Getting active protocol handler");
     Try {
         CUSTOM_HANDLER_DB_SELECT(select, ProtocolHandlers);
 
@@ -139,7 +139,7 @@ CustomHandlerPtr CustomHandlerDAOReadOnly::getProtocolHandler(
     const DPL::String& url,
     const DPL::String& baseURL)
 {
-    LogDebug("Check if protocol is registered");
+    WrtLogD("Check if protocol is registered");
     Try {
         CUSTOM_HANDLER_DB_SELECT(select, ProtocolHandlers);
 
@@ -163,7 +163,7 @@ CustomHandlerPtr CustomHandlerDAOReadOnly::getProtocolHandler(
 CustomHandlerPtr CustomHandlerDAOReadOnly::getActivContentHandler(
     const DPL::String& content)
 {
-    LogDebug("Getting active content handler");
+    WrtLogD("Getting active content handler");
     Try {
         CUSTOM_HANDLER_DB_SELECT(select, ContentHandlers);
 
@@ -196,7 +196,7 @@ CustomHandlerPtr CustomHandlerDAOReadOnly::getContentHandler(
     const DPL::String& url,
     const DPL::String& baseURL)
 {
-    LogDebug("Check if content is registered");
+    WrtLogD("Check if content is registered");
     Try {
         CUSTOM_HANDLER_DB_SELECT(select, ContentHandlers);