Change exception handling to log at debug

master
Andrew DeMaria 5 years ago
parent ee5cbfdad0
commit 2caa2550ef
No known key found for this signature in database
GPG Key ID: 0A3F5E91F8364EDF
  1. 2
      airsonic-main/src/main/java/org/airsonic/player/service/search/IndexManager.java

@ -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;
} }
} }

Loading…
Cancel
Save