Change exception handling to log at debug

This commit is contained in:
Andrew DeMaria
2019-11-03 17:29:49 -07:00
parent ee5cbfdad0
commit 2caa2550ef
@@ -289,7 +289,7 @@ public class IndexManager {
} }
} }
} catch (IOException | IllegalArgumentException e) { } catch (IOException | IllegalArgumentException e) {
LOG.warn("Exception encountered while fetching index commit data", e); LOG.debug("Exception encountered while fetching index commit data", e);
return null; return null;
} }
} }