From 784407c5876ad77d4d38f72c30aa1d2f7d1f6d73 Mon Sep 17 00:00:00 2001 From: zhouoaoteng Date: Fri, 12 Sep 2025 14:57:22 +0800 Subject: [PATCH] add log Signed-off-by: zhouoaoteng --- interfaces/inner_api/file_access/src/file_access_helper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interfaces/inner_api/file_access/src/file_access_helper.cpp b/interfaces/inner_api/file_access/src/file_access_helper.cpp index b8cabb35..52fcfcb2 100644 --- a/interfaces/inner_api/file_access/src/file_access_helper.cpp +++ b/interfaces/inner_api/file_access/src/file_access_helper.cpp @@ -271,11 +271,11 @@ std::pair, int> FileAccessHelper::Creator( return {nullptr, EINVAL}; } if (!IsSystemApp()) { - HILOG_ERROR("FileAccessHelper::Creator check IsSystemAppByFullTokenID failed"); + HILOG_ERROR("FileAccessHelper::Creator check IsSystemAppByFullTokenID failed."); return {nullptr, E_PERMISSION_SYS}; } if (GetRegisteredFileAccessExtAbilityInfo(allWants) != ERR_OK) { - HILOG_ERROR("GetRegisteredFileAccessExtAbilityInfo failed"); + HILOG_ERROR("GetRegisteredFileAccessExtAbilityInfo failed."); return {nullptr, E_GETINFO}; } -- Gitee