From a830e670cdf8c6a23682c168df7d993d0b6922b2 Mon Sep 17 00:00:00 2001 From: wujianlin Date: Mon, 8 Jan 2024 04:03:26 +0000 Subject: [PATCH] Lower the log level Issue:https://gitee.com/openharmony/commonlibrary_c_utils/issues/I8UD58?from=project-issue Signed-off-by: wujianlin --- base/src/parcel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/src/parcel.cpp b/base/src/parcel.cpp index 4c7f3ac..ec3bb08 100644 --- a/base/src/parcel.cpp +++ b/base/src/parcel.cpp @@ -251,7 +251,7 @@ bool Parcel::CheckOffsets() { size_t readPos = readCursor_; if ((readPos + sizeof(parcel_flat_binder_object)) > dataSize_) { - UTILS_LOGW("CheckOffsets Invalid obj, obj size overflow. objSize:%{public}zu, dataSize:%{public}zu", + UTILS_LOGD("CheckOffsets Invalid obj, obj size overflow. objSize:%{public}zu, dataSize:%{public}zu", readPos + sizeof(parcel_flat_binder_object), dataSize_); return false; } -- Gitee