From 3ac4b0cabfef9b93b9a549b130cb41cca83e5df6 Mon Sep 17 00:00:00 2001 From: fwx1262723 Date: Tue, 30 Jan 2024 19:54:27 +0800 Subject: [PATCH] log level modify Signed-off-by: fwx1262723 --- interfaces/innerkits/code_sign_utils/src/code_sign_utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interfaces/innerkits/code_sign_utils/src/code_sign_utils.cpp b/interfaces/innerkits/code_sign_utils/src/code_sign_utils.cpp index d4ff79d..ae2297e 100644 --- a/interfaces/innerkits/code_sign_utils/src/code_sign_utils.cpp +++ b/interfaces/innerkits/code_sign_utils/src/code_sign_utils.cpp @@ -212,8 +212,8 @@ int32_t CodeSignUtils::EnforceCodeSignForFile(const std::string &path, const uin int32_t CodeSignUtils::EnforceCodeSignForAppWithOwnerId(const std::string &ownerId, const std::string &path, const EntryMap &entryPathMap, FileType type, const std::string &moduleName) { - LOG_DEBUG(LABEL, "Start to enforce codesign FileType:%{public}d, entryPathMap size:%{public}u", - type, static_cast(entryPathMap.size())); + LOG_INFO(LABEL, "Start to enforce codesign FileType:%{public}d, entryPathMap size:%{public}u, path = %{public}s", + type, static_cast(entryPathMap.size()), path.c_str()); if (type == FILE_ENTRY_ADD || type == FILE_ENTRY_ONLY || type == FILE_ALL) { StoredEntryMapInsert(moduleName, entryPathMap); if (type == FILE_ENTRY_ADD) { -- Gitee