This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 7b385c11faa [fix](log) Fix s3_rate_limiter.cpp LOG incomplete (#48440) 7b385c11faa is described below commit 7b385c11faa6c7bbf255729acead85db65cb59d4 Author: deardeng <deng...@selectdb.com> AuthorDate: Tue Mar 4 20:31:49 2025 +0800 [fix](log) Fix s3_rate_limiter.cpp LOG incomplete (#48440) --- common/cpp/s3_rate_limiter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/cpp/s3_rate_limiter.cpp b/common/cpp/s3_rate_limiter.cpp index 2d3b21f4a56..2dae4377ec5 100644 --- a/common/cpp/s3_rate_limiter.cpp +++ b/common/cpp/s3_rate_limiter.cpp @@ -44,7 +44,7 @@ public: spin_count++; if (spin_count >= MAX_SPIN_COUNT) { LOG(WARNING) << "Warning: Excessive spinning detected while acquiring lock. Spin " - "count: "; + "count: " << spin_count; spin_count = 0; } // Spin until we acquire the lock --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org