From cb034479718f8875e52a0234f0cffcde9be01d45 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Fri, 13 May 2022 19:17:49 +0200 Subject: [PATCH] Refactor: remove logs --- src/static/js/synced-timer.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/static/js/synced-timer.js b/src/static/js/synced-timer.js index 9cc9995..98b3095 100644 --- a/src/static/js/synced-timer.js +++ b/src/static/js/synced-timer.js @@ -73,11 +73,8 @@ document.addEventListener('alpine:init', () => { return } - console.log(performanceEntry) const requestDuration = performanceEntry.responseEnd - performanceEntry.requestStart; this.timeOffsetToServer = performanceEntry.responseEnd - data.data.currentServerTime + (requestDuration / 2); - console.log(requestDuration, "offset: ", this.timeOffsetToServer) - }, })