From fc3e259f6fd1b3cd83e02041226b045c9c99434e Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Thu, 21 Sep 2017 11:42:30 -0700 Subject: [PATCH] remove debug prints --- scripts/system/controllers/controllerDispatcher.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/system/controllers/controllerDispatcher.js b/scripts/system/controllers/controllerDispatcher.js index 4bed004e67..da0a42413e 100644 --- a/scripts/system/controllers/controllerDispatcher.js +++ b/scripts/system/controllers/controllerDispatcher.js @@ -299,7 +299,6 @@ Script.include("/~/system/libraries/controllerDispatcherUtils.js"); // activity-slots which this plugin consumes as "in use" _this.runningPluginNames[orderedPluginName] = true; _this.markSlots(candidatePlugin, orderedPluginName); - print("QQQQ running " + orderedPluginName); } if (PROFILE) { Script.endProfileRange("dispatch.isReady." + orderedPluginName); @@ -332,7 +331,6 @@ Script.include("/~/system/libraries/controllerDispatcherUtils.js"); // of running plugins and mark its activity-slots as "not in use" delete _this.runningPluginNames[runningPluginName]; _this.markSlots(plugin, false); - print("QQQQ stopping " + runningPluginName); } if (PROFILE) { Script.endProfileRange("dispatch.run." + runningPluginName);