[node-xwalk] Print error messages during the evaluation jscode of module 60/56860/1
authorWonYoung Choi <wy80.choi@samsung.com>
Wed, 13 Jan 2016 08:01:13 +0000 (17:01 +0900)
committerWonYoung Choi <wy80.choi@samsung.com>
Wed, 13 Jan 2016 08:01:13 +0000 (17:01 +0900)
Change-Id: I51d2b83f796dd210b2a6745c438b6900b14026bc

modules/node-xwalk/lib/loader.js

index a7db731..4d5f846 100644 (file)
@@ -55,11 +55,10 @@ ExtensionModule.prototype.load = function() {
     return true;
   } catch (err) {
     error('Error during loading extension "' +
-          this.extension_path + '"');
+          this.extension_path);
+    error(err.stack);
     return false;
   }
-
-  return false;
 };
 
 var ExtensionLoader = function() {