!244 remove sensitive info print

Merge pull request !244 from jidong/dev
This commit is contained in:
openharmony_ci 2022-03-18 09:36:08 +00:00 committed by Gitee
commit b511acd52c
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 0 additions and 7 deletions

View File

@ -400,12 +400,6 @@ ErrCode AppAccountSubscribeManager::OnAccountsChanged(const std::shared_ptr<AppA
continue;
}
ACCOUNT_LOGI("appAccounts.size() = %{public}zu", appAccounts.size());
for (auto appAccount : appAccounts) {
ACCOUNT_LOGI("appAccount.GetId() = %{public}s", appAccount.GetPrimeKey().c_str());
ACCOUNT_LOGI("appAccount.ToString() = %{public}s", appAccount.ToString().c_str());
}
auto appAccountEventProxy = iface_cast<IAppAccountEvent>(receiver->eventListener);
if (appAccountEventProxy == nullptr) {
ACCOUNT_LOGE("failed to get app account event proxy");

View File

@ -48,7 +48,6 @@ void OsAccountDataStorage::SaveEntries(
continue;
}
osAccountInfo.FromJson(jsonObject);
ACCOUNT_LOGE("OsAccountDataStorage SaveEntries() json %{public}s", osAccountInfo.ToString().c_str());
infos.emplace(item.key.ToString(), std::make_shared<OsAccountInfo>(osAccountInfo));
}
ACCOUNT_LOGE("OsAccountDataStorage SaveEntries() end");