Add exception catch.

This commit is contained in:
Deklan Dieterly 2014-03-06 09:54:19 -07:00
parent a06c150dcf
commit 3326216dcf
1 changed files with 2 additions and 0 deletions

View File

@ -125,6 +125,8 @@ public class MonDeDuper implements Managed {
} catch (InterruptedException e) {
logger.warn("Failed to wait for " + seconds + " between deduping", e);
} catch (Exception e) {
logger.error("Failed to dedupe", e);
}
}