From 967752d5bbb8c4ba50a03a7590d9a0e945a1416a Mon Sep 17 00:00:00 2001 From: wujianlin Date: Mon, 28 Oct 2024 19:06:22 +0800 Subject: [PATCH] Reduce log output Issue:https://gitee.com/openharmony/commonlibrary_c_utils/issues/IB0C78?from=project-issue Signed-off-by: wujianlin --- base/src/event_reactor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/src/event_reactor.cpp b/base/src/event_reactor.cpp index 59fb615..b6f63e5 100644 --- a/base/src/event_reactor.cpp +++ b/base/src/event_reactor.cpp @@ -77,7 +77,7 @@ void EventReactor::RunLoop(int timeout) const while (loopReady_ && switch_) { if (demultiplexer_->Polling(timeout) == EPOLL_CRITICAL_ERROR) { - UTILS_LOGE("polling critical error occure: %{public}d", timeout); + UTILS_LOGD("polling critical error occure: %{public}d", timeout); break; } } -- Gitee