Skip to content

Commit 723ae5d

Browse files
committed
Adds logging for calculating timed out tags.
1 parent 5608468 commit 723ae5d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

functions/common/methods.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -990,6 +990,8 @@ export const getActiveQueueForGame = async (
990990
const isTimedOut = diff > tagAutoPostTimer
991991
if (isTimedOut) {
992992
log('Tag timed out', { tagnumber: t.tagnumber, diff }, 'info')
993+
} else {
994+
log('Tag not timed out', { now, mysteryTime: t.mysteryTime, diff }, 'info')
993995
}
994996
return isTimedOut
995997
})

0 commit comments

Comments
 (0)