From 4f8f6f417d2f788fc389869cf53ed1fc825b8705 Mon Sep 17 00:00:00 2001 From: jiangminsen Date: Tue, 16 Apr 2024 10:30:36 +0800 Subject: [PATCH] log fix Signed-off-by: jiangminsen --- services/dbms/src/distributed_data_storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/dbms/src/distributed_data_storage.cpp b/services/dbms/src/distributed_data_storage.cpp index b045548..7c3379d 100644 --- a/services/dbms/src/distributed_data_storage.cpp +++ b/services/dbms/src/distributed_data_storage.cpp @@ -181,7 +181,7 @@ bool DistributedDataStorage::GetStorageDistributeInfo(const std::string &network return false; } std::string keyOfData = DeviceAndNameToKey(udid, bundleName); - APP_LOGI("keyOfData: [%{public}s]", keyOfData.c_str()); + APP_LOGI("keyOfData: [%{public}s]", AnonymizeUdid(keyOfData).c_str()); Key key(keyOfData); Value value; Status status = kvStorePtr_->Get(key, value); -- Gitee