minor logging improvement

This commit is contained in:
rusefillc 2024-05-31 10:24:20 -04:00
parent cc2738f2d9
commit 8f598bf100
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public abstract class FileSystemBoardInputsReaderImpl implements BoardInputs {
public List<String> getBoardMeta(String boardMetaFileName) {
try {
String fileName = PREFIX + boardMetaFileName;
System.out.printf("Reading from " + new File(fileName).getAbsolutePath());
log.info("Reading from " + new File(fileName).getAbsolutePath());
return Files.readAllLines(Paths.get(fileName));
} catch (IOException e) {
throw new RuntimeException(e);