Don't log mediaTimeUpdate, less noise
This commit is contained in:
parent
af783e0532
commit
8a16ddb3d0
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue