better log message

This commit is contained in:
Athou
2013-05-27 11:46:23 +02:00
parent 5b0c9e940b
commit 648923afb8

View File

@@ -135,8 +135,8 @@ public class FeedRefreshUpdater {
lock.tryLock(1, TimeUnit.MINUTES);
feedUpdateService.updateEntry(feed, entry, subscriptions);
} catch (InterruptedException e) {
log.error("interrupted while waiting for lock: " + e.getMessage(),
e);
log.error("interrupted while waiting for lock for " + feed.getUrl()
+ " : " + e.getMessage(), e);
} finally {
lock.unlock();
}