From f60caef568c2c7dc4036d31181fff35c165bda3b Mon Sep 17 00:00:00 2001 From: p0rnb0x <71538354+p0rnb0x@users.noreply.github.com> Date: Sun, 26 Jan 2025 20:12:07 -0800 Subject: [PATCH] [markerTagToScene] reduce logging (#458) --- plugins/markerTagToScene/markerTagToScene.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/markerTagToScene/markerTagToScene.js b/plugins/markerTagToScene/markerTagToScene.js index c256adf..03b98ed 100644 --- a/plugins/markerTagToScene/markerTagToScene.js +++ b/plugins/markerTagToScene/markerTagToScene.js @@ -78,7 +78,7 @@ function processMarker(marker, shouldHandleAllTags) { } function main() { - log.Info(JSON.stringify(input)); + //log.Info(JSON.stringify(input)); if (input.Args.mode == "processMarkers") { var allTags = shouldHandleAllTags(); log.Trace("Mode is processMarkers, allTags is " + allTags); @@ -105,7 +105,7 @@ function main() { } log.Progress("Finished processing markers"); } else if (input.Args.mode == "hook") { - log.Info("Mode is hook"); + log.Debug("Mode is hook"); processMarker(input.Args.hookContext.input, shouldHandleAllTags()); } else { log.Error("Unknown mode");