Removed debugging log that wasn't intended to be committed.

This commit is contained in:
CalDescent 2021-06-18 08:33:51 +01:00
parent aafb9d7e4f
commit 8e35f131d5

View File

@ -258,7 +258,6 @@ public class DataFile {
Path path = Paths.get(this.filePath); Path path = Paths.get(this.filePath);
try { try {
byte[] bytes = Files.readAllBytes(path); byte[] bytes = Files.readAllBytes(path);
LOGGER.info("getBytes: %d", bytes);
return bytes; return bytes;
} catch (IOException e) { } catch (IOException e) {
LOGGER.error("Unable to read bytes for file"); LOGGER.error("Unable to read bytes for file");