You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2013/01/29 21:15:56 UTC

[3/4] js commit: [ios] Move logger init into plugininit.js

[ios] Move logger init into plugininit.js


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

Branch: refs/heads/symbolmapping
Commit: 95d6eb23354119c4af634cc0f083dd33e7bfbe77
Parents: 8412ae0
Author: Andrew Grieve <ag...@chromium.org>
Authored: Tue Jan 29 14:49:16 2013 -0500
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Tue Jan 29 14:49:16 2013 -0500

----------------------------------------------------------------------
 lib/ios/platform.js                     |    5 ++---
 lib/ios/plugin/ios/logger/plugininit.js |   24 ++++++++++++++++++++++++
 2 files changed, 26 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/95d6eb23/lib/ios/platform.js
----------------------------------------------------------------------
diff --git a/lib/ios/platform.js b/lib/ios/platform.js
index c424257..83c02cf 100644
--- a/lib/ios/platform.js
+++ b/lib/ios/platform.js
@@ -24,11 +24,10 @@ module.exports = {
     initialize:function() {
         var modulemapper = require('cordova/modulemapper');
 
+        modulemapper.loadMatchingModules(/cordova.*\/plugininit$/);
+
         modulemapper.loadMatchingModules(/cordova.*\/symbols$/);
         modulemapper.mapModules(window);
     }
 };
 
-// use the native logger
-var logger = require("cordova/plugin/logger");
-logger.useConsole(false);

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/95d6eb23/lib/ios/plugin/ios/logger/plugininit.js
----------------------------------------------------------------------
diff --git a/lib/ios/plugin/ios/logger/plugininit.js b/lib/ios/plugin/ios/logger/plugininit.js
new file mode 100644
index 0000000..2c5f2f9
--- /dev/null
+++ b/lib/ios/plugin/ios/logger/plugininit.js
@@ -0,0 +1,24 @@
+/*
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+*/
+
+// use the native logger
+var logger = require("cordova/plugin/logger");
+logger.useConsole(false);