From 934e0ddeb6e4d409d64b2fc9bbbaab7c12c87cef Mon Sep 17 00:00:00 2001 From: edwardcaoyue Date: Tue, 2 Jul 2024 20:37:12 +0800 Subject: [PATCH] log info modify Signed-off-by: edwardcaoyue --- qos/qos.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qos/qos.cpp b/qos/qos.cpp index bd99dd8..5035708 100644 --- a/qos/qos.cpp +++ b/qos/qos.cpp @@ -51,7 +51,7 @@ int QosController::SetThreadQosForOtherThread(enum QosLevel level, int tid) if (ret == 0) { CONCUR_LOGD("[Qos] qoslevel %{public}d apply for tid %{public}d success", qos, tid); } else { - CONCUR_LOGE("[Qos] qoslevel %{public}d apply for tid %{public}d failure", qos, tid); + CONCUR_LOGD("[Qos] qoslevel %{public}d apply for tid %{public}d failure", qos, tid); } return ret; @@ -70,7 +70,7 @@ int QosController::ResetThreadQosForOtherThread(int tid) if (ret == 0) { CONCUR_LOGD("[Qos] qoslevel reset for tid %{public}d success", tid); } else { - CONCUR_LOGE("[Qos] qoslevel reset for tid %{public}d failure", tid); + CONCUR_LOGD("[Qos] qoslevel reset for tid %{public}d failure", tid); } return ret; @@ -90,7 +90,7 @@ int QosController::GetThreadQosForOtherThread(enum QosLevel &level, int tid) level = static_cast(qos); return ret; } else { - CONCUR_LOGE("[Qos] qoslevel get for tid %{public}d failure", tid); + CONCUR_LOGD("[Qos] qoslevel get for tid %{public}d failure", tid); return ret; } } -- Gitee