From: Cody Cutrer Date: Tue, 13 Dec 2022 22:28:55 +0000 (-0700) Subject: [jrubyscripting] remove some development logging that crept in (#13947) X-Git-Url: https://git.basschouten.com/?a=commitdiff_plain;h=4aca2c6976ed28bb36284478ddc62e3283961882;p=openhab-addons.git [jrubyscripting] remove some development logging that crept in (#13947) Signed-off-by: Cody Cutrer --- diff --git a/bundles/org.openhab.automation.jrubyscripting/src/main/java/org/openhab/automation/jrubyscripting/internal/watch/JRubyScriptFileWatcher.java b/bundles/org.openhab.automation.jrubyscripting/src/main/java/org/openhab/automation/jrubyscripting/internal/watch/JRubyScriptFileWatcher.java index 392050df17..af55016809 100644 --- a/bundles/org.openhab.automation.jrubyscripting/src/main/java/org/openhab/automation/jrubyscripting/internal/watch/JRubyScriptFileWatcher.java +++ b/bundles/org.openhab.automation.jrubyscripting/src/main/java/org/openhab/automation/jrubyscripting/internal/watch/JRubyScriptFileWatcher.java @@ -66,9 +66,7 @@ public class JRubyScriptFileWatcher extends AbstractScriptFileWatcher { protected void processWatchEvent(@Nullable WatchEvent event, WatchEvent.@Nullable Kind kind, @Nullable Path path) { if (Objects.nonNull(path)) { - logger.trace("looking at {}", path); if (!isIgnored(path.toString())) { - logger.trace("and propagating it"); super.processWatchEvent(event, kind, path); } }