Skip to content

Commit

Permalink
[minor](s3client) use LOG(INFO) to print s3 client debug log if enabl…
Browse files Browse the repository at this point in the history
…ed (#28059)
  • Loading branch information
morningman committed Dec 22, 2023
1 parent f0a9d34 commit efc846c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions be/src/util/s3_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ class DorisAWSLogger final : public Aws::Utils::Logging::LogSystemInterface {
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;
Expand Down

0 comments on commit efc846c

Please sign in to comment.