From 8a16ddb3d0d96f90ae5f2b035d4fe0aacd8704b6 Mon Sep 17 00:00:00 2001 From: DC Date: Wed, 30 Mar 2016 20:48:25 -0700 Subject: [PATCH] Don't log mediaTimeUpdate, less noise --- renderer/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderer/index.js b/renderer/index.js index 3c7c6500..96c88255 100644 --- a/renderer/index.js +++ b/renderer/index.js @@ -199,7 +199,7 @@ function updateElectron () { // Events from the UI never modify state directly. Instead they call dispatch() function dispatch (action, ...args) { // Log dispatch calls, for debugging - if (action !== 'mediaMouseMoved') { + if (!['mediaMouseMoved', 'mediaTimeUpdate'].includes(action)) { console.log('dispatch: %s %o', action, args) }