Merge remote-tracking branch 'origin/pr/1459'

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

@ -311,8 +311,10 @@ public class IndexManager {
} else {
LOG.warn("{} does not exist. Please run a scan.", indexDirectory.getAbsolutePath());
}
} catch (IndexNotFoundException e) {
LOG.debug("Index {} does not exist in {}, likely not yet created.", indexType.toString(), indexDirectory.getAbsolutePath());
} catch (IOException e) {
LOG.error("Failed to initialize SearcherManager.", e);
LOG.warn("Failed to initialize SearcherManager.", e);
}
}
try {

Loading…
Cancel
Save