···385385386386 recentlyPlayedTrackIsValid = (playObj: any) => playObj.data.playDate.isBefore(dayjs().subtract(30, 's'))
387387388388- protected getInterval(): number {
388388+ protected getInterval(log?: boolean): number {
389389 /**
390390 * If any player is progressing, reports position, and play has duration
391391 * then we can modify polling interval so that we check source data just before track is supposed to end
···415415 }
416416 }
417417 }
418418- if(logDecrease !== undefined) {
418418+ if(logDecrease !== undefined && log) {
419419 this.logger.debug(logDecrease);
420420 }
421421 return interval;