Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ private static void registerHandler(Router router, String handlerURL, HttpMethod
static void createUploadDir(final Path uploadDir, final Logger log, final boolean initialCreation) throws IOException {
if (!Files.exists(uploadDir)) {
if (initialCreation) {
log.info("Upload directory {} does not exist. " + uploadDir);
log.info("Upload directory {} does not exist. ", uploadDir);
} else {
log.warn("Upload directory {} has been deleted externally. " +
"Previously uploaded files are no longer available.", uploadDir);
Expand Down