only: logging getAbsolutePath

This commit is contained in:
rusefillc 2024-02-05 00:03:29 -05:00
parent e84ab564bd
commit 292601fa70
1 changed files with 3 additions and 1 deletions

View File

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