aboutsummaryrefslogtreecommitdiff
path: root/src/AsyncEventLoop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/AsyncEventLoop.cpp')
-rw-r--r--src/AsyncEventLoop.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/AsyncEventLoop.cpp b/src/AsyncEventLoop.cpp
index 0ee9986..f11babb 100644
--- a/src/AsyncEventLoop.cpp
+++ b/src/AsyncEventLoop.cpp
@@ -47,9 +47,7 @@ void AsyncEventLoop::process_tasks() {
void AsyncEventLoop::run_loop() {
is_loop_running = true;
while (is_loop_running) {
- // qDebug() << "loop iteration" << uv_loop_alive(loop);
uv_run(loop, UV_RUN_NOWAIT);
- // qDebug() << "uv_run() returned: " << result;
std::this_thread::sleep_for(std::chrono::milliseconds(10));
}
}