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

zhouky pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git


The following commit(s) were added to refs/heads/main by this push:
     new e8dd4bbf4 [CELEBORN-835] Format specifiers should be used instead of 
string concatenation
e8dd4bbf4 is described below

commit e8dd4bbf451f6479adf74de43561d795a8c7f627
Author: e <[email protected]>
AuthorDate: Tue Jul 25 17:58:47 2023 +0800

    [CELEBORN-835] Format specifiers should be used instead of string 
concatenation
    
    ### What changes were proposed in this pull request?
    
    As title.
    
    ### Why are the changes needed?
    
    As title.
    
    ### Does this PR introduce _any_ user-facing change?
    
    NO
    
    ### How was this patch tested?
    
    Passes GA.
    
    Closes #1758 from jiaoqingbo/CELEBORN-835.
    
    Authored-by: e <[email protected]>
    Signed-off-by: zky.zhoukeyong <[email protected]>
---
 client/src/main/java/org/apache/celeborn/client/ShuffleClientImpl.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/client/src/main/java/org/apache/celeborn/client/ShuffleClientImpl.java 
b/client/src/main/java/org/apache/celeborn/client/ShuffleClientImpl.java
index 202eb62d3..992597521 100644
--- a/client/src/main/java/org/apache/celeborn/client/ShuffleClientImpl.java
+++ b/client/src/main/java/org/apache/celeborn/client/ShuffleClientImpl.java
@@ -1658,7 +1658,7 @@ public class ShuffleClientImpl extends ShuffleClient {
   }
 
   private StatusCode getPushDataFailCause(String message) {
-    logger.debug("Push data failed cause message: " + message);
+    logger.debug("Push data failed cause message: {}", message);
     StatusCode cause;
     if (message == null) {
       logger.error("Push data throw unexpected exception: {}", message);

Reply via email to