You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by GitBox <gi...@apache.org> on 2022/10/10 02:57:12 UTC

[GitHub] [dubbo] AlbumenJ commented on a diff in pull request #10683: remind user to add qos dependency.(Fixes #10682)

AlbumenJ commented on code in PR #10683:
URL: https://github.com/apache/dubbo/pull/10683#discussion_r990887394


##########
dubbo-common/src/main/java/org/apache/dubbo/config/context/ConfigManager.java:
##########
@@ -295,6 +295,14 @@ private void checkConfigs() {
             }
             protocolPortMap.put(port, protocol);
         }
+
+        // Log the current configurations.
+        logger.info("The current configurations or effective configurations are as follows:");
+        for (Class<? extends AbstractConfig> configType : multipleConfigTypes) {
+            getConfigs(configType).stream().forEach((config) -> {
+                logger.info(config.toString());
+            });
+        }

Review Comment:
   Will this work?



-- 
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.

To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org