remove some logs

This commit is contained in:
Tamius Han 2021-03-06 02:07:09 +01:00
parent 57ad81a7a4
commit 87310f95cc
2 changed files with 0 additions and 2 deletions

View File

@ -309,7 +309,6 @@ class VideoData {
if (this.pageInfo.defaultCrop) {
this.resizer.setAr(this.pageInfo.defaultCrop);
} else {
console.log("RESETTING!")
this.resizer.reset();
try {

View File

@ -291,7 +291,6 @@ class UWServer {
// if video is older than PageInfo's video rescan period (+ 4000ms of grace),
// we clean it up from videoTabs[tabId].frames array.
const ageLimit = Date.now() - this.settings.active.pageInfo.timeouts.rescan - 4000;
console.log("videoTabs[tabId]:", this.videoTabs[ctab.id])
try {
for (const key in this.videoTabs[ctab.id].frames) {
if (this.videoTabs[ctab.id].frames[key].registerTime < ageLimit) {