tizen 2.4 release
[framework/web/wrt-commons.git] / tests / unused / test_message_queue.cpp
index 09990b7..8053ce5 100644 (file)
@@ -69,13 +69,13 @@ class CopyThread :
         m_output(output),
         m_dataSize(dataSize)
     {
-        LogDebug("Thread created");
+        WrtLogD("Thread created");
     }
 
   protected:
     virtual int ThreadEntry()
     {
-        LogDebug("Entering copy thread");
+        WrtLogD("Entering copy thread");
 
         Try
         {
@@ -85,11 +85,11 @@ class CopyThread :
         {
             m_success = false;
 
-            LogWarning("Copy failed!");
+            WrtLogW("Copy failed!");
             return 0;
         }
 
-        LogDebug("Copy finished");
+        WrtLogD("Copy finished");
         return 0;
     }
 };