log4j-server/src/main/java/org/apache/logging/log4j/server/TcpSocketServer.java [210:218]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final Thread serverThread = socketServer.startNewThread();
        if (cla.isInteractive()) {
            socketServer.awaitTermination(serverThread);
        }
    }

    @SingletonFactory
    public ConfigurationFactory configurationFactory() {
        return new ServerConfigurationFactory(configLocation);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



log4j-server/src/main/java/org/apache/logging/log4j/server/UdpSocketServer.java [84:92]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final Thread serverThread = socketServer.startNewThread();
        if (cla.isInteractive()) {
            socketServer.awaitTermination(serverThread);
        }
    }

    @SingletonFactory
    public ConfigurationFactory configurationFactory() {
        return new ServerConfigurationFactory(configLocation);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



