yanyzy opened a new issue #5175:  Print configuration information for shadow
URL: https://github.com/apache/incubator-shardingsphere/issues/5175
 
 
   Add a judgment for ShadowRuleConfiguration in ConfigurationLogger.java and 
add a log method.
   
   ```java
   public static void log(final RuleConfiguration ruleConfiguration) {
           if (null == ruleConfiguration) {
               return;
           }
           if (ruleConfiguration instanceof ShardingRuleConfiguration) {
               log((ShardingRuleConfiguration) ruleConfiguration);
           } else if (ruleConfiguration instanceof 
MasterSlaveRuleConfiguration) {
               log((MasterSlaveRuleConfiguration) ruleConfiguration);
           } else if (ruleConfiguration instanceof EncryptRuleConfiguration) {
               log((EncryptRuleConfiguration) ruleConfiguration);
           }
       }
   ```
   

----------------------------------------------------------------
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:
[email protected]


With regards,
Apache Git Services

Reply via email to