Print console messages to dlog 30/172130/1
authorSangYong Park <sy302.park@samsung.com>
Mon, 12 Mar 2018 05:39:57 +0000 (14:39 +0900)
committerSangYong Park <sy302.park@samsung.com>
Mon, 12 Mar 2018 05:41:07 +0000 (14:41 +0900)
Change-Id: I0826b601c629969ca710d298f64e0716b4ad5f88
Signed-off-by: SangYong Park <sy302.park@samsung.com>
atom/browser/api/atom_api_pwrt.cc
atom/browser/api/atom_api_pwrt.h
lib/browser/init.js

index e249288..e8a75a6 100644 (file)
@@ -7,6 +7,7 @@
 #include "atom/common/node_includes.h"
 #include "tizen/common/application_data.h"
 #include "tizen/common/command_line.h"
+#include <dlog.h>
 
 namespace atom {
 
@@ -48,6 +49,11 @@ bool PWRT::isTizenWebApp() {
   }
 }
 
+void PWRT::Log(const std::string& message) {
+  std::string output = "[JS LOG] " + message;
+  dlog_print(DLOG_INFO, "WRT", output.c_str());
+}
+
 // static
 mate::Handle<PWRT> PWRT::Create(v8::Isolate* isolate) {
   LOG(INFO) << "PWRT::Create";
@@ -63,7 +69,8 @@ void PWRT::BuildPrototype(
   mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
     .SetMethod("getMessage", &PWRT::GetMessage)
     .SetMethod("getPath", &PWRT::GetPath)
-    .SetMethod("isTizenWebApp", &PWRT::isTizenWebApp);
+    .SetMethod("isTizenWebApp", &PWRT::isTizenWebApp)
+    .SetMethod("log", &PWRT::Log);
 }
 
 }  // namespace api
index ac466d7..647a5ae 100644 (file)
@@ -19,6 +19,7 @@ class PWRT : public mate::TrackableObject<PWRT> {
   std::string GetMessage();
   std::string GetPath();
   bool isTizenWebApp();
+  void Log(const std::string& message);
 
  protected:
   explicit PWRT(v8::Isolate* isolate);
index b9fe447..308dde7 100644 (file)
@@ -42,6 +42,11 @@ if (process.platform === 'win32') {
   process.stdout.write = process.stderr.write = streamWrite
 }
 
+let {pwrt} = require('electron');
+console.log = console.error = console.warn = function(...args) {
+  pwrt.log(util.format(...args));
+};
+
 // Don't quit on fatal error.
 process.on('uncaughtException', function (error) {
   // Do nothing if the user has a custom uncaught exception handler.