Skip to content

Commit f60caef

Browse files
authored
[markerTagToScene] reduce logging (#458)
1 parent d9c2c88 commit f60caef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/markerTagToScene/markerTagToScene.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function processMarker(marker, shouldHandleAllTags) {
7878
}
7979

8080
function main() {
81-
log.Info(JSON.stringify(input));
81+
//log.Info(JSON.stringify(input));
8282
if (input.Args.mode == "processMarkers") {
8383
var allTags = shouldHandleAllTags();
8484
log.Trace("Mode is processMarkers, allTags is " + allTags);
@@ -105,7 +105,7 @@ function main() {
105105
}
106106
log.Progress("Finished processing markers");
107107
} else if (input.Args.mode == "hook") {
108-
log.Info("Mode is hook");
108+
log.Debug("Mode is hook");
109109
processMarker(input.Args.hookContext.input, shouldHandleAllTags());
110110
} else {
111111
log.Error("Unknown mode");

0 commit comments

Comments
 (0)