From a120e871e4d0df858bd02d13681bea2c04d28e03 Mon Sep 17 00:00:00 2001 From: huaqingsimeng <1004904143@qq.com> Date: Tue, 21 Mar 2023 07:15:40 +0000 Subject: [PATCH] =?UTF-8?q?=E6=95=8F=E6=84=9F=E4=BF=A1=E6=81=AF=E4=BF=9D?= =?UTF-8?q?=E6=8A=A4=E4=B8=8D=E5=BD=93=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: huaqingsimeng --- .../backup_sa/src/module_ipc/svc_session_manager.cpp | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/services/backup_sa/src/module_ipc/svc_session_manager.cpp b/services/backup_sa/src/module_ipc/svc_session_manager.cpp index 286dddbc7..c508315a4 100644 --- a/services/backup_sa/src/module_ipc/svc_session_manager.cpp +++ b/services/backup_sa/src/module_ipc/svc_session_manager.cpp @@ -85,8 +85,7 @@ void SvcSessionManager::Deactive(const wptr &remoteInAction, bool } deathRecipient_ = nullptr; - HILOGI("Succeed to deactive a session. Client token = %{public}u, client proxy = 0x%{private}p", impl_.clientToken, - impl_.clientProxy.GetRefPtr()); + HILOGI("Succeed to deactive a session"); impl_ = {}; extConnectNum_ = 0; } @@ -299,7 +298,7 @@ void SvcSessionManager::InitClient(Impl &newImpl) } auto callback = [revPtr {reversePtr_}](const wptr &obj) { - HILOGI("Client died. Died remote obj = %{private}p", obj.GetRefPtr()); + HILOGI("Client died."); auto revPtrStrong = revPtr.promote(); if (!revPtrStrong) { @@ -311,10 +310,7 @@ void SvcSessionManager::InitClient(Impl &newImpl) }; deathRecipient_ = sptr(new SvcDeathRecipient(callback)); remoteObj->AddDeathRecipient(deathRecipient_); - HILOGI( - "Succeed to active a session." - "Client token = %{public}u, client proxy = 0x%{private}p, remote obj = 0x%{private}p", - impl_.clientToken, impl_.clientProxy.GetRefPtr(), remoteObj.GetRefPtr()); + HILOGI("Succeed to active a session"); } void SvcSessionManager::SetExtFileNameRequest(const string &bundleName, const string &fileName) -- Gitee