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

morningman 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 6566492d3b9 [minor](s3client) use LOG(INFO) to print s3 client debug 
log if enabled (#28059) (#28907)
6566492d3b9 is described below

commit 6566492d3b973f4e41e8cc4924dcc42de2d7cbc7
Author: Mingyu Chen <[email protected]>
AuthorDate: Sat Dec 23 00:29:12 2023 +0800

    [minor](s3client) use LOG(INFO) to print s3 client debug log if enabled 
(#28059) (#28907)
    
    bp (#28059)
---
 be/src/util/s3_util.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/be/src/util/s3_util.cpp b/be/src/util/s3_util.cpp
index 8148ad199ac..94756a3a0ba 100644
--- a/be/src/util/s3_util.cpp
+++ b/be/src/util/s3_util.cpp
@@ -74,10 +74,10 @@ private:
             LOG(INFO) << "[" << tag << "] " << message;
             break;
         case Aws::Utils::Logging::LogLevel::Debug:
-            VLOG_ROW << "[" << tag << "] " << message;
+            LOG(INFO) << "[" << tag << "] " << message;
             break;
         case Aws::Utils::Logging::LogLevel::Trace:
-            VLOG_ROW << "[" << tag << "] " << message;
+            LOG(INFO) << "[" << tag << "] " << message;
             break;
         default:
             break;


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to