From 3bc9924d95115c59a24d471b42c650c47d53a3d9 Mon Sep 17 00:00:00 2001 From: Tusooa Zhu Date: Sun, 10 Jan 2021 20:20:33 -0500 Subject: [PATCH] Remove debug output for queue monitor --- src/job/cprjobhandler.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/job/cprjobhandler.cpp b/src/job/cprjobhandler.cpp index 2fe6151..d3a85fb 100644 --- a/src/job/cprjobhandler.cpp +++ b/src/job/cprjobhandler.cpp @@ -100,10 +100,7 @@ namespace Kazv } void popJobImpl(std::string queueId) { - kzo.job.dbg() << "popJobImpl called with " << queueId << std::endl; if (! jobQueues[queueId].empty()) { - kzo.job.dbg() << "the first job is " - << (jobQueues[queueId].front().status == Waiting ? "Waiting" : "Running") << std::endl; jobQueues[queueId].pop_front(); } } @@ -114,11 +111,8 @@ namespace Kazv [=] { // precondition: job has a queueId for (auto &[queueId, queue] : jobQueues) { // need to change queue - kzo.job.dbg() << "monitoring queue " << queueId << std::endl; if (! queue.empty()) { auto [job, callback, status] = queue.front(); - kzo.job.dbg() << "the first job is " - << (status == Waiting ? "Waiting" : "Running") << std::endl; if (status == Waiting) { queue.front().status = Running; submitImpl(