updated logging

This commit is contained in:
Jeremy Long
2018-01-21 09:35:13 -05:00
parent 275d1bdbf9
commit 40f70c257d
4 changed files with 5 additions and 4 deletions

View File

@@ -98,6 +98,7 @@ public final class FileUtils {
if (!tempDir.mkdirs()) {
throw new IOException("Could not create temp directory `" + tempDir.getAbsolutePath() + "`");
}
LOGGER.debug("Temporary directory is `{}`", tempDir.getAbsolutePath());
return tempDir;
}