Github user rzo1 commented on a diff in the pull request:
https://github.com/apache/tomee/pull/231#discussion_r239105184
--- Diff:
server/openejb-multicast/src/main/java/org/apache/openejb/server/discovery/MulticastDiscoveryAgent.java
---
@@ -46,7 +46,7 @@
*/
public class MulticastDiscoveryAgent implements DiscoveryAgent,
ServerService, SelfManaging {
- private static final Logger log =
Logger.getInstance(LogCategory.OPENEJB_SERVER.createChild("discovery").createChild("multicast"),
MulticastDiscoveryAgent.class);
+ private static final Logger LOG =
Logger.getInstance(LogCategory.OPENEJB_SERVER.createChild("discovery").createChild("multicast"),
MulticastDiscoveryAgent.class);
--- End diff --
Maybe we should change this to `LOGGER` to be consistent throughout the
code-base?
---