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/14 21:28:21 UTC

[storm] branch master updated: [STORM-3581] change log level to INFO to show the config classes being used for validation

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 d5d248c  [STORM-3581] change log level to INFO to show the config classes being used for validation
     new 7e9c3fc  Merge pull request #3209 from Ethanlm/STORM-3581
d5d248c is described below

commit d5d248c6714fde35a96a416415f4defd9bdebd77
Author: Ethan Li <et...@gmail.com>
AuthorDate: Thu Feb 13 11:13:33 2020 -0600

    [STORM-3581] change log level to INFO to show the config classes being used for validation
---
 storm-client/src/jvm/org/apache/storm/validation/ConfigValidation.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/storm-client/src/jvm/org/apache/storm/validation/ConfigValidation.java b/storm-client/src/jvm/org/apache/storm/validation/ConfigValidation.java
index f52df59..eb4ce7d 100644
--- a/storm-client/src/jvm/org/apache/storm/validation/ConfigValidation.java
+++ b/storm-client/src/jvm/org/apache/storm/validation/ConfigValidation.java
@@ -79,7 +79,7 @@ public class ConfigValidation {
                     throw new RuntimeException(e);
                 }
             }
-            LOG.debug("Will use {} for validation", ret);
+            LOG.info("Will use {} for validation", ret);
             configClasses = ret;
         }
         return configClasses;