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/06/21 22:03:14 UTC

[2/2] git commit: remove overly verbose log messages

remove overly verbose log messages


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

Branch: refs/heads/2.9.x
Commit: fcec07bda85cb7c6a57c7c6ca1c3dff476ff6b51
Parents: 99c41a3
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Fri Jun 21 12:50:53 2013 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Fri Jun 21 13:02:41 2013 -0700

----------------------------------------------------------------------
 wp8/bin/create.js | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/fcec07bd/wp8/bin/create.js
----------------------------------------------------------------------
diff --git a/wp8/bin/create.js b/wp8/bin/create.js
index 38ef289..ae88bf9 100644
--- a/wp8/bin/create.js
+++ b/wp8/bin/create.js
@@ -65,7 +65,6 @@ var ForReading = 1, ForWriting = 2, ForAppending = 8;
 var TristateUseDefault = -2, TristateTrue = -1, TristateFalse = 0;
 
 function read(filename) {
-    Log("Reading file : " + filename);
     var f=fso.OpenTextFile(filename, 1,2);
     var s=f.ReadAll();
     f.Close();