This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new 7cd2af0f9cd branch-3.0: [fix](log) Fix s3_rate_limiter.cpp LOG incomplete #48440 (#48643) 7cd2af0f9cd is described below commit 7cd2af0f9cdcc7c5bc72a272c50c82bc1a3c868f Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Mon Mar 10 21:00:04 2025 +0800 branch-3.0: [fix](log) Fix s3_rate_limiter.cpp LOG incomplete #48440 (#48643) Cherry-picked from #48440 Co-authored-by: deardeng <deng...@selectdb.com> --- 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