You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2021/03/25 02:14:08 UTC

[GitHub] [incubator-doris] stdpain commented on a change in pull request #5564: [Bug] Fix bug that call frontend service failed when rpc_timeout is equal with publish_timeout

stdpain commented on a change in pull request #5564:
URL: https://github.com/apache/incubator-doris/pull/5564#discussion_r600993661



##########
File path: fe/fe-core/src/main/java/org/apache/doris/master/MasterImpl.java
##########
@@ -94,9 +94,9 @@ public TMasterResult finishTask(TFinishTaskRequest request) {
         // check task status
         // retry task by report process
         TStatus taskStatus = request.getTaskStatus();
-        LOG.debug("get task report: {}", request.toString());
+        LOG.debug("get task report: {}", request);

Review comment:
       It's a better way to use 
   ```java
   if (LOG.isDebugEnabled()) {
       LOG.debug("get task report: {}", request);
   }
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org