From 6a407878633fe3b16174c354b202a09b472be589 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Tue, 18 Jun 2019 05:46:16 +0100 Subject: [PATCH] fine log --- .../main/groovy/com/muwire/core/files/DirectoryWatcher.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/groovy/com/muwire/core/files/DirectoryWatcher.groovy b/core/src/main/groovy/com/muwire/core/files/DirectoryWatcher.groovy index ca8e0023..e0b5121e 100644 --- a/core/src/main/groovy/com/muwire/core/files/DirectoryWatcher.groovy +++ b/core/src/main/groovy/com/muwire/core/files/DirectoryWatcher.groovy @@ -120,7 +120,7 @@ class DirectoryWatcher { def published = [] waitingFiles.each { file, timestamp -> if (now - timestamp > WAIT_TIME) { - log.info("publishing file $file") + log.fine("publishing file $file") eventBus.publish new FileSharedEvent(file : file) published << file }