remove debug prints

This commit is contained in:
Seth Alves 2017-09-21 11:42:30 -07:00
parent 3c22c9ea3a
commit fc3e259f6f

View file

@ -299,7 +299,6 @@ Script.include("/~/system/libraries/controllerDispatcherUtils.js");
// activity-slots which this plugin consumes as "in use" // activity-slots which this plugin consumes as "in use"
_this.runningPluginNames[orderedPluginName] = true; _this.runningPluginNames[orderedPluginName] = true;
_this.markSlots(candidatePlugin, orderedPluginName); _this.markSlots(candidatePlugin, orderedPluginName);
print("QQQQ running " + orderedPluginName);
} }
if (PROFILE) { if (PROFILE) {
Script.endProfileRange("dispatch.isReady." + orderedPluginName); 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" // of running plugins and mark its activity-slots as "not in use"
delete _this.runningPluginNames[runningPluginName]; delete _this.runningPluginNames[runningPluginName];
_this.markSlots(plugin, false); _this.markSlots(plugin, false);
print("QQQQ stopping " + runningPluginName);
} }
if (PROFILE) { if (PROFILE) {
Script.endProfileRange("dispatch.run." + runningPluginName); Script.endProfileRange("dispatch.run." + runningPluginName);