From 2c702cbd9f5f0c842f51e4c8b99e620ad583d4fb Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 11 Apr 2026 09:42:13 +0200 Subject: [PATCH] Clean up logs --- source/utils/reent.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/utils/reent.cpp b/source/utils/reent.cpp index 880b602..e249e40 100644 --- a/source/utils/reent.cpp +++ b/source/utils/reent.cpp @@ -85,8 +85,6 @@ namespace { void ClearDanglingReentPtr() { std::lock_guard lock(sGlobalNodesMutex); - DEBUG_FUNCTION_LINE_ERR("Before clean up having %d entries", sGlobalNodes.size()); - // This function is expected to be called exactly once at the start of each new application cycle. // It acts as a garbage collector for nodes left behind by the previous application. // Leftover nodes typically occur when threads are forcefully killed before they can execute @@ -123,7 +121,7 @@ void ClearDanglingReentPtr() { return true; }); - DEBUG_FUNCTION_LINE_ERR("After clean up having %d entries", sGlobalNodes.size()); + DEBUG_FUNCTION_LINE_INFO("Cleaning up %d dangling reent entries", sGlobalNodes.size()); } static void __wups_thread_cleanup(OSThread *thread, void *stack) {