Reduced log spam when a file can't be served.

This commit is contained in:
CalDescent 2021-12-02 19:41:31 +00:00
parent 2850bd0b46
commit d6746362a4

View File

@ -125,7 +125,7 @@ public class ArbitraryDataRenderer {
}
}
} catch (IOException e) {
LOGGER.info("Unable to serve file at path: {}", inPath, e);
LOGGER.info("Unable to serve file at path: {}", inPath, e.getMessage());
}
return ArbitraryDataRenderer.getResponse(response, 404, "Error 404: File Not Found");