summaryrefslogtreecommitdiff
path: root/src/TaskMan.cc
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2012-04-08 01:19:47 -0700
committerPixel <pixel@nobis-crew.org>2012-04-08 01:19:47 -0700
commite719749e399fc4490fdaf471a000dc841d576c73 (patch)
treefc65ce609cbcc60d95b8369ea566a30378f9428f /src/TaskMan.cc
parent1dcc9e59ea3f985f7b939386684831614216bc65 (diff)
This debug message wasn't supposed to get committed...
Diffstat (limited to 'src/TaskMan.cc')
-rw-r--r--src/TaskMan.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/TaskMan.cc b/src/TaskMan.cc
index 1695d39..97732e4 100644
--- a/src/TaskMan.cc
+++ b/src/TaskMan.cc
@@ -230,8 +230,6 @@ int Balau::TaskMan::mainLoop() {
// checking "STARTING" tasks, and running them once
while ((iH = starting.begin()) != starting.end()) {
Task * t = *iH;
- if (t->getStatus() != Task::STARTING)
- Printer::elog(E_TASK, "pouet");
IAssert(t->getStatus() == Task::STARTING, "Got task at %p in the starting list, but isn't starting.", t);
t->switchTo();
IAssert(t->getStatus() != Task::STARTING, "Task at %p got switchedTo, but still is 'STARTING'.", t);