protected Connection getOrCreateConnection()

in logging/jms-appender/src/main/java/org/apache/servicemix/logging/jms/JMSAppender.java [75:80]


    protected Connection getOrCreateConnection() throws JMSException {
        if (connection == null) {
            connection = jmsConnectionFactory.createConnection();
        }
        return connection;
    }