From cf2a2f753d4fdba95c77428c71f4337a35143707 Mon Sep 17 00:00:00 2001 From: torrizo Date: Thu, 26 Jun 2025 06:38:38 +0000 Subject: [PATCH] update common/src/dm_anonymous.cpp. Signed-off-by: torrizo --- common/src/dm_anonymous.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/dm_anonymous.cpp b/common/src/dm_anonymous.cpp index 985e06677..3088b31d4 100644 --- a/common/src/dm_anonymous.cpp +++ b/common/src/dm_anonymous.cpp @@ -102,7 +102,7 @@ std::string GetAnonyInt32List(const std::vector &values) bool IsNumberString(const std::string &inputString) { if (inputString.length() == 0 || inputString.length() > MAX_INT_LEN) { - LOGE("inputString is Null or inputString length is too long"); + LOGE("inputString is Null or inputString length is too long."); return false; } const int32_t MIN_ASCII_NUM = 48; -- Gitee