From c716b956ede342c74d53d60437f80cd0cad850cd Mon Sep 17 00:00:00 2001 From: "Kuro.Fish" Date: Wed, 16 Sep 2020 10:40:59 +0800 Subject: [PATCH] fix issue #I1VEFV --- samgr/source/samgr_lite.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samgr/source/samgr_lite.c b/samgr/source/samgr_lite.c index aac7561..608e429 100755 --- a/samgr/source/samgr_lite.c +++ b/samgr/source/samgr_lite.c @@ -125,7 +125,7 @@ void SAMGR_Bootstrap(void) VECTOR_Clear(&initServices); int32 err = InitCompleted(); if (err != EC_SUCCESS) { - HILOG_INFO(HILOG_MODULE_SAMGR, "Goto next boot step failed! errno:%d", err); + HILOG_INFO(HILOG_MODULE_SAMGR, "Goto next boot step return code:%d", err); } } @@ -484,7 +484,7 @@ static void HandleInitRequest(const Request *request, const Response *response) serviceImpl->service->GetName(serviceImpl->service), serviceImpl->ops.timestamp - lastTime); int32 err = InitCompleted(); if (err != EC_SUCCESS) { - HILOG_INFO(HILOG_MODULE_SAMGR, "Goto next boot step failed! errno:%d", err); + HILOG_INFO(HILOG_MODULE_SAMGR, "Goto next boot step return code:%d", err); } } -- Gitee