From 6d06d5572020c91ad4571a19ac9f0e551055f8ec Mon Sep 17 00:00:00 2001 From: m00911899 Date: Fri, 28 Mar 2025 11:06:01 +0800 Subject: [PATCH] test for 5.0.1 Signed-off-by: m00911899 --- common/src/kernel_interface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/kernel_interface.cpp b/common/src/kernel_interface.cpp index cb8297e..da89200 100644 --- a/common/src/kernel_interface.cpp +++ b/common/src/kernel_interface.cpp @@ -128,7 +128,7 @@ bool KernelInterface::WriteToFile(const std::string& path, const std::string& co HILOGE("file path cannot be canonicalized"); return false; } - HILOGD("path:%{public}s, actualPath:%{public}s", path.c_str(), actualPath); + HILOGI("path:%{public}s, actualPath:%{public}s", path.c_str(), actualPath); fd = open(actualPath, O_RDWR | (truncated ? O_TRUNC : O_APPEND)); if (fd == -1) { HILOGE("echo %{public}s %{public}s %{public}s failed: file is not open", -- Gitee