Add exception catch.

This commit is contained in:
Deklan Dieterly 2014-03-06 09:54:19 -07:00
parent a06c150dcf
commit 3326216dcf

View File

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