Issue Type: Bug Bug
Affects Versions: 1.0.6
Assignee: Logback dev list
Components: logback-core
Created: 21/Jun/12 7:07 AM
Description: I'm using logback for logging to database using DBAppender. I've configured a connection pool of 20 connections. The problem is that DBAppenderBase closes the Connection-objects after each insert, which is undesired as the connection pool implementation should take care of the life cycle of the connections.

{code:java}
public abstract class DBAppenderBase<E> extends UnsynchronizedAppenderBase<E> {
...
...
public void append(E eventObject) {
...
...
} finally {
      DBHelper.closeConnection(connection);
}
...
{code}
Project: logback
Priority: Major Major
Reporter: Heikki Malkamäki
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira