minor logging improvement
This commit is contained in:
parent
cc2738f2d9
commit
8f598bf100
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue