diff options
author | Pixel <pixel@nobis-crew.org> | 2012-04-08 01:19:47 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2012-04-08 01:19:47 -0700 |
commit | e719749e399fc4490fdaf471a000dc841d576c73 (patch) | |
tree | fc65ce609cbcc60d95b8369ea566a30378f9428f /src | |
parent | 1dcc9e59ea3f985f7b939386684831614216bc65 (diff) |
This debug message wasn't supposed to get committed...
Diffstat (limited to 'src')
-rw-r--r-- | src/TaskMan.cc | 2 |
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); |