|
||||||||
|
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 |
||||||||
_______________________________________________ logback-dev mailing list [email protected] http://mailman.qos.ch/mailman/listinfo/logback-dev

From AbstractSocketAppender:
private int queueSize = DEFAULT_QUEUE_SIZE; [...] BlockingQueue<E> newBlockingQueue(int queueSize) { return queueSize <= 0 ? new SynchronousQueue<E>() : new ArrayBlockingQueue<E>(queueSize); }Note that a SynchronousQueue is used if the queue size is 0, which it is by default.