From 3d7676e91894908ec1fb373ba672010c86ec15fd Mon Sep 17 00:00:00 2001 From: humbletim Date: Wed, 21 Jun 2017 15:57:28 -0400 Subject: [PATCH] reduce non-debug log spam --- unpublishedScripts/marketplace/camera-move/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unpublishedScripts/marketplace/camera-move/app.js b/unpublishedScripts/marketplace/camera-move/app.js index 96805b9140..0546ead02a 100644 --- a/unpublishedScripts/marketplace/camera-move/app.js +++ b/unpublishedScripts/marketplace/camera-move/app.js @@ -491,11 +491,11 @@ function initializeDOM() { document.activeElement && document.activeElement.blur(); document.body.focus(); tooltipManager && tooltipManager.disable(); - log('TOOLTIPS DISABLED'); + debugPrint('TOOLTIPS DISABLED'); } else if (tooltipManager && bridgedSettings) { if (bridgedSettings.getValue('ui-enable-tooltips')){ tooltipManager.enable(); - log('TOOLTIPS RE-ENABLED'); + debugPrint('TOOLTIPS RE-ENABLED'); } } $('body').toggleClass('active', window._active);