only: logging getAbsolutePath
This commit is contained in:
parent
e84ab564bd
commit
292601fa70
|
@ -61,7 +61,9 @@ public abstract class FileSystemBoardInputsReaderImpl implements BoardInputs {
|
||||||
@Override
|
@Override
|
||||||
public List<String> getBoardMeta(String boardMetaFileName) {
|
public List<String> getBoardMeta(String boardMetaFileName) {
|
||||||
try {
|
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) {
|
} catch (IOException e) {
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue