You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by et...@apache.org on 2020/02/10 15:04:48 UTC

[storm] branch master updated: [MINOR] complete log info

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

ethanli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/storm.git


The following commit(s) were added to refs/heads/master by this push:
     new 50303a5  [MINOR] complete log info
     new db93e7b  Merge pull request #3204 from howardliu-cn/feature/log_info
50303a5 is described below

commit 50303a52ca75da8b3a2c9c5999bf32297f17403a
Author: Howard Liu <ho...@163.com>
AuthorDate: Fri Feb 7 14:51:39 2020 +0800

    [MINOR] complete log info
---
 .../jvm/org/apache/storm/trident/topology/state/TransactionalState.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/storm-client/src/jvm/org/apache/storm/trident/topology/state/TransactionalState.java b/storm-client/src/jvm/org/apache/storm/trident/topology/state/TransactionalState.java
index ccb5feb..734d660 100644
--- a/storm-client/src/jvm/org/apache/storm/trident/topology/state/TransactionalState.java
+++ b/storm-client/src/jvm/org/apache/storm/trident/topology/state/TransactionalState.java
@@ -138,7 +138,7 @@ public class TransactionalState {
         try {
             curator.delete().forPath(path);
         } catch (KeeperException.NoNodeException nne) {
-            LOG.warn("Path {} already deleted.");
+            LOG.warn("Path {} already deleted.", path);
         } catch (Exception e) {
             throw new RuntimeException(e);
         }