Skip to content
Snippets Groups Projects
Commit ace3a94e authored by Adrien Béraud's avatar Adrien Béraud
Browse files

scheduler: remove debug log

This reverts commit 5d771e11.
parent 5d771e11
Branches
Tags
No related merge requests found
......@@ -84,7 +84,6 @@ public:
* @return The time for the next job to run.
*/
time_point run() {
size_t count {0};
while (not timers.empty()) {
auto timer = timers.begin();
/*
......@@ -100,9 +99,7 @@ public:
if (job->do_)
job->do_();
count++;
}
std::cerr << "run " << count << " scheduled " << timers.size() << std::endl;
return getNextJobTime();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment