diff options
Diffstat (limited to 'tools/tools-common')
-rw-r--r-- | tools/tools-common/src/main/java/org/onap/policy/apex/tools/common/OutputFile.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/tools-common/src/main/java/org/onap/policy/apex/tools/common/OutputFile.java b/tools/tools-common/src/main/java/org/onap/policy/apex/tools/common/OutputFile.java index 0aa85df5d..2a20554b5 100644 --- a/tools/tools-common/src/main/java/org/onap/policy/apex/tools/common/OutputFile.java +++ b/tools/tools-common/src/main/java/org/onap/policy/apex/tools/common/OutputFile.java @@ -122,7 +122,9 @@ public class OutputFile { } } else { try { - file.createNewFile(); + if (file.createNewFile()) { + LOGGER.trace("Created output file {}", file.getName()); + } } catch (final IOException e) { String message = "could not create output file: " + e.getMessage(); LOGGER.warn(message, e); |