3
0
mirror of https://github.com/Qortal/qortal.git synced 2025-02-14 11:15:49 +00:00

Fixed logging error.

This commit is contained in:
CalDescent 2021-12-05 13:30:22 +00:00
parent b592aa6a02
commit 2c382f3d3f

View File

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