This is an automated email from the ASF dual-hosted git repository.

liulijia pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new a751eb6056d [opt](log) avoid lots of json parse error logs (#39190) 
(#39247)
a751eb6056d is described below

commit a751eb6056dd8ce9effe3ab73d67b88239404c54
Author: camby <camby...@tencent.com>
AuthorDate: Tue Aug 13 19:04:11 2024 +0800

    [opt](log) avoid lots of json parse error logs (#39190) (#39247)
    
    pick https://github.com/apache/doris/pull/39190 to branch-2.0
---
 be/src/vec/functions/function_jsonb.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/be/src/vec/functions/function_jsonb.cpp 
b/be/src/vec/functions/function_jsonb.cpp
index 24cae346cbc..37f2a5d59fd 100644
--- a/be/src/vec/functions/function_jsonb.cpp
+++ b/be/src/vec/functions/function_jsonb.cpp
@@ -255,8 +255,6 @@ public:
                                     
(size_t)parser.getWriter().getOutput()->getSize());
             } else {
                 error = parser.getErrorCode();
-                LOG(WARNING) << "json parse error: " << 
JsonbErrMsg::getErrMsg(error)
-                             << " for value: " << std::string_view(val.data, 
val.size);
 
                 switch (parse_error_handle_mode) {
                 case JsonbParseErrorMode::FAIL:


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to