From 78a3ca7abbd073b69158d7e4adf7045240921856 Mon Sep 17 00:00:00 2001 From: Cody Cutrer Date: Tue, 13 Dec 2022 15:28:55 -0700 Subject: [PATCH] [jrubyscripting] remove some development logging that crept in (#13947) Signed-off-by: Cody Cutrer Signed-off-by: Andras Uhrin --- .../jrubyscripting/internal/watch/JRubyScriptFileWatcher.java | 2 -- 1 file changed, 2 deletions(-) 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 392050df171b0..af55016809311 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 @@ protected void importFile(ScriptFileReference ref) { 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); } }