Issue Type: Bug Bug
Affects Versions: 1.0.13
Assignee: Logback dev list
Components: logback-core
Created: 22/Oct/13 12:31 PM
Description:

AsyncAppenderBase swallows InterruptedException and thereby clears the interrupt flag. This affects my interrupt handling.
Is this really intended behaviour?

Offending code:

try {
    blockingQueue.put(eventObject);
} catch (InterruptedException e) {
}

Test case:

Thread.currentThread().interrupt();
logger.debug("Something");
assertTrue(Thread.currentThread().isInterrupted());
Project: logback
Priority: Major Major
Reporter: Henrik Nordvik
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