diff --git a/local/index.html b/local/index.html
index 43495ff2..6b2257c9 100644
--- a/local/index.html
+++ b/local/index.html
@@ -437,7 +437,6 @@
});
app.on("service", function(name, plugin) {
- console.log("Plugin " + name + " loaded in: " + (Date.now() - start));
if (name == "plugin.loader" || name == "plugin.installer" || name == "plugin.debug" || name == "plugin.manager")
plugin.architect = app; // TODO why we rename app to architect?
if (name == "c9")
@@ -447,7 +446,6 @@
});
app.on("ready", function(){
- console.log("App ready called");
if (app.services.configure)
app.services.configure.services = app.services;
@@ -465,16 +463,13 @@
});
// }
app.services.tabManager.once("ready", function () {
- console.log("Tabmanager ready called");
time.done("tabManager", "client");
removeLoader();
});
app.services.tree.once("ready", function () {
- console.log("Tree ready called");
time.done("tree", "client");
});
app.services.c9.once("connect", function () {
- console.log("Connect ready called")
time.done("connect", "client");
});
});
diff --git a/plugins/c9.ide.editors/tabmanager.js b/plugins/c9.ide.editors/tabmanager.js
index 009c2dff..2215f65e 100644
--- a/plugins/c9.ide.editors/tabmanager.js
+++ b/plugins/c9.ide.editors/tabmanager.js
@@ -50,7 +50,6 @@ define(function(require, module, exports) {
// Ref to focusManager - this will be changed later
focusManager.tabManager = plugin;
- console.log("Initialized Tabmanager");
var loaded = false, changed = false;
function load(){
@@ -337,7 +336,6 @@ define(function(require, module, exports) {
settings.on("user/tabs", function(){ updateTitle(focussedTab); });
}
- console.log("Calling ready from tabmanager");
emit("ready");
}
@@ -1454,7 +1452,6 @@ define(function(require, module, exports) {
/***** Lifecycle *****/
plugin.on("load", function(){
- console.log("Load beginning");
load();
});
plugin.on("enable", function(){