From 9e737205257ae126badddc4fab2d868c6e3c8fde Mon Sep 17 00:00:00 2001 From: blankie Date: Fri, 3 Feb 2023 11:57:12 +0700 Subject: [PATCH] Remove debug print --- logcat_thread.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/logcat_thread.cpp b/logcat_thread.cpp index 0f13f2e..9cf7418 100644 --- a/logcat_thread.cpp +++ b/logcat_thread.cpp @@ -159,9 +159,6 @@ void LogcatThread::_put_if_not_stopped(LogcatThreadItem item) { if (this->atomic_ring_buffer.try_put_and_increment_write(item)) { break; } -#ifndef NDEBUG - printf("spinlocking!!!\n"); -#endif if (this->_stop_source.stop_requested()) { break; }