From 5a17cbc2f2958c82d43b18902a14e5bb8564fc13 Mon Sep 17 00:00:00 2001 From: wujianlin Date: Mon, 10 Mar 2025 11:51:47 +0800 Subject: [PATCH] Deletes the print of a memory object Issue:https://gitee.com/openharmony/commonlibrary_c_utils/issues/IBS28V?from=project-issue Signed-off-by: wujianlin --- base/src/io_event_handler.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/base/src/io_event_handler.cpp b/base/src/io_event_handler.cpp index 1010f5f..eca4458 100644 --- a/base/src/io_event_handler.cpp +++ b/base/src/io_event_handler.cpp @@ -43,8 +43,6 @@ IOEventHandler::~IOEventHandler() bool IOEventHandler::Start(IOEventReactor* reactor) { - UTILS_LOGD("%{public}s: Try add handler-%{public}p to reactor-%{public}p.", \ - __FUNCTION__, reinterpret_cast(this), reinterpret_cast(reactor)); ErrCode res = reactor->AddHandler(this); if (res != EVENT_SYS_ERR_OK) { UTILS_LOGE("%{public}s: Try add handler failed.", __FUNCTION__); @@ -56,8 +54,6 @@ bool IOEventHandler::Start(IOEventReactor* reactor) bool IOEventHandler::Stop(IOEventReactor* reactor) { - UTILS_LOGD("%{public}s: Try remove handler-%{public}p from reactor-%{public}p.", \ - __FUNCTION__, reinterpret_cast(this), reinterpret_cast(reactor)); ErrCode res = reactor->RemoveHandler(this); if (res != EVENT_SYS_ERR_OK) { UTILS_LOGE("%{public}s: Try remove handler failed.", __FUNCTION__); @@ -69,8 +65,6 @@ bool IOEventHandler::Stop(IOEventReactor* reactor) bool IOEventHandler::Update(IOEventReactor* reactor) { - UTILS_LOGD("%{public}s: Try update handler-%{public}p to reactor-%{public}p.", \ - __FUNCTION__, reinterpret_cast(this), reinterpret_cast(reactor)); ErrCode res = reactor->UpdateHandler(this); if (res != EVENT_SYS_ERR_OK) { UTILS_LOGE("%{public}s: Try update handler failed.", __FUNCTION__); -- Gitee