You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2013/07/30 01:36:31 UTC

[11/12] git commit: made console.log a plugman.emit.log call

made console.log a plugman.emit.log call


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/eb531635
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/eb531635
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/eb531635

Branch: refs/heads/master
Commit: eb5316357a1121b485d7b345e2d226d54789dbdc
Parents: f13edb1
Author: purplecabbage <pu...@gmail.com>
Authored: Mon Jul 29 14:23:36 2013 -0700
Committer: purplecabbage <pu...@gmail.com>
Committed: Mon Jul 29 16:34:10 2013 -0700

----------------------------------------------------------------------
 src/util/w8jsproj.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/eb531635/src/util/w8jsproj.js
----------------------------------------------------------------------
diff --git a/src/util/w8jsproj.js b/src/util/w8jsproj.js
index dd15aad..e589b81 100644
--- a/src/util/w8jsproj.js
+++ b/src/util/w8jsproj.js
@@ -8,7 +8,7 @@ var xml_helpers = require('./xml-helpers'),
     fs = require('fs');
 
 function jsproj(location) {
-    console.log("creating jsproj at " + location);
+    require('../../plugman').emit('log','creating jsproj from project at : ' + location);
     this.location = location;
     this.xml = xml_helpers.parseElementtreeSync(location);
     return this;