Remove debug logs

pull/374/head
Tim Robinson 2016-10-06 23:49:32 +00:00
rodzic 9696045ab0
commit 6370f2ede2
2 zmienionych plików z 0 dodań i 8 usunięć

Wyświetl plik

@ -437,7 +437,6 @@
}); });
app.on("service", function(name, plugin) { 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") if (name == "plugin.loader" || name == "plugin.installer" || name == "plugin.debug" || name == "plugin.manager")
plugin.architect = app; // TODO why we rename app to architect? plugin.architect = app; // TODO why we rename app to architect?
if (name == "c9") if (name == "c9")
@ -447,7 +446,6 @@
}); });
app.on("ready", function(){ app.on("ready", function(){
console.log("App ready called");
if (app.services.configure) if (app.services.configure)
app.services.configure.services = app.services; app.services.configure.services = app.services;
@ -465,16 +463,13 @@
}); });
// } // }
app.services.tabManager.once("ready", function () { app.services.tabManager.once("ready", function () {
console.log("Tabmanager ready called");
time.done("tabManager", "client"); time.done("tabManager", "client");
removeLoader(); removeLoader();
}); });
app.services.tree.once("ready", function () { app.services.tree.once("ready", function () {
console.log("Tree ready called");
time.done("tree", "client"); time.done("tree", "client");
}); });
app.services.c9.once("connect", function () { app.services.c9.once("connect", function () {
console.log("Connect ready called")
time.done("connect", "client"); time.done("connect", "client");
}); });
}); });

Wyświetl plik

@ -50,7 +50,6 @@ define(function(require, module, exports) {
// Ref to focusManager - this will be changed later // Ref to focusManager - this will be changed later
focusManager.tabManager = plugin; focusManager.tabManager = plugin;
console.log("Initialized Tabmanager");
var loaded = false, changed = false; var loaded = false, changed = false;
function load(){ function load(){
@ -337,7 +336,6 @@ define(function(require, module, exports) {
settings.on("user/tabs", function(){ updateTitle(focussedTab); }); settings.on("user/tabs", function(){ updateTitle(focussedTab); });
} }
console.log("Calling ready from tabmanager");
emit("ready"); emit("ready");
} }
@ -1454,7 +1452,6 @@ define(function(require, module, exports) {
/***** Lifecycle *****/ /***** Lifecycle *****/
plugin.on("load", function(){ plugin.on("load", function(){
console.log("Load beginning");
load(); load();
}); });
plugin.on("enable", function(){ plugin.on("enable", function(){