tizen 2.4 release
[framework/web/wrt-commons.git] / modules / test / src / process_pipe.cpp
similarity index 95%
rename from modules_wearable/test/src/process_pipe.cpp
rename to modules/test/src/process_pipe.cpp
index 68c910f..aa84f9a 100644 (file)
@@ -21,7 +21,7 @@
  */
 
 #include<dpl/test/process_pipe.h>
-#include<dpl/log/log.h>
+#include<dpl/log/wrt_log.h>
 
 namespace DPL {
 
@@ -61,7 +61,7 @@ void ProcessPipe::Open(const std::string & command)
     m_file = file;
     m_fd = fileno(m_file);
 
-    LogPedantic("Opened pipe: " << fcommand);
+    WrtLogD("Opened pipe: %s", fcommand.c_str());
 }
 
 void ProcessPipe::Close()
@@ -77,7 +77,7 @@ void ProcessPipe::Close()
     m_fd = -1;
     m_file = NULL;
 
-    LogPedantic("Closed pipe");
+    WrtLogD("Closed pipe");
 }
 
 }