QueueProcessor: survive on LOG.error in tests

This commit is contained in:
Anton Makeev
2012-08-23 11:49:33 +02:00
parent b64c6516ed
commit ba5a694cc8
@@ -209,8 +209,8 @@ public class QueueProcessor<T> {
try {
LOG.error(t);
}
catch (Exception ignore) {
// should survive assertions
catch (Throwable e2) {
e2.printStackTrace();
}
}
}