summaryrefslogtreecommitdiff
path: root/src/TaskMan.cc
diff options
context:
space:
mode:
authorNicolas Noble <pixel@nobis-crew.org>2013-08-01 16:15:15 -0700
committerNicolas Noble <pixel@nobis-crew.org>2013-08-01 16:15:15 -0700
commit48636e4f1b4fe378ac1fe20ca2c8c9a1f900e63f (patch)
tree09d8561c619ce0e690dff39bb53681e0401276dd /src/TaskMan.cc
parent9d614195cff948d69df417add0b08b2fe44d4ec5 (diff)
Specifying a bit more the logs around ev_run.
Diffstat (limited to 'src/TaskMan.cc')
-rw-r--r--src/TaskMan.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/TaskMan.cc b/src/TaskMan.cc
index 398fa87..ae6cdcc 100644
--- a/src/TaskMan.cc
+++ b/src/TaskMan.cc
@@ -265,7 +265,7 @@ int Balau::TaskMan::mainLoop() {
// libev's event "loop". We always runs it once though.
m_allowedToSignal = true;
- Printer::elog(E_TASK, "TaskMan at %p Going to libev main loop", this);
+ Printer::elog(E_TASK, "TaskMan at %p Going to libev main loop; stopped = %s", this, m_stopped ? "true" : "false");
ev_run(m_loop, noWait || m_stopped ? EVRUN_NOWAIT : EVRUN_ONCE);
Printer::elog(E_TASK, "TaskMan at %p Getting out of libev main loop", this);