We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c35283d commit 9be1b74Copy full SHA for 9be1b74
1 file changed
core/src/main/java/com/predic8/membrane/core/router/RouterXmlBootstrap.java
@@ -22,6 +22,8 @@
22
import java.nio.charset.*;
23
import java.util.*;
24
25
+import static com.predic8.membrane.core.proxies.ApiInfo.logInfosAboutStartedProxies;
26
+
27
/**
28
* Bootstrapping a {@link DefaultRouter} instance using Spring XML-based configuration.
29
*/
@@ -50,6 +52,7 @@ public static Router initByXML(String resource) {
50
52
);
51
53
}
54
DefaultRouter router = bf.getBean("router", DefaultRouter.class);
55
+ logInfosAboutStartedProxies(router.getRuleManager());
56
bf.start(); // Starting ApplicationContext will also call router.start(). Init should happen before.
57
return router;
58
0 commit comments