log before executing

This commit is contained in:
Athou
2013-05-23 08:19:05 +02:00
parent fb6f339967
commit fd347eec74

View File

@@ -62,8 +62,8 @@ public class FeedRefreshUpdater {
pool.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy() {
@Override
public void rejectedExecution(Runnable r, ThreadPoolExecutor e) {
super.rejectedExecution(r, e);
log.info("Thread queue full, executing in own thread.");
super.rejectedExecution(r, e);
}
});
}