From 9dad69df6004beb25bea33c332631d79284e5645 Mon Sep 17 00:00:00 2001 From: Wu Shangwei <2826256824@qq.com> Date: Wed, 25 Aug 2021 09:34:14 +0800 Subject: [PATCH] Fix filepath output error Signed-off-by: Wu Shangwei <2826256824@qq.com> Change-Id: Ia6cf0f8fce7c9a6abbda62bed49a34896e84a4f0 --- services/hilogd/log_querier.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/hilogd/log_querier.cpp b/services/hilogd/log_querier.cpp index cdd88d9..49ee39e 100644 --- a/services/hilogd/log_querier.cpp +++ b/services/hilogd/log_querier.cpp @@ -613,7 +613,7 @@ int LogQuerier::RestorePersistJobs(HilogBuffer& _buffer) JobLauncher(info.msg, _buffer, true, info.index + 1); std::cout << "Recovery Info:" << std::endl << "jobId=" << (unsigned)(info.msg.jobId) << std::endl << - "filePath=" << (unsigned)(info.msg.filePath) << std::endl; + "filePath=" << (info.msg.filePath) << std::endl; } } closedir (dir); -- Gitee