feat(backend/ender): removed debug log

This commit is contained in:
Alexander Zavorotynskiy 2022-06-07 13:48:10 +02:00
parent 7678e9d056
commit 9292d315c4

View file

@ -55,7 +55,6 @@ func (se *SessionEnder) UpdateSession(sessionID, timestamp uint64) {
return
}
sess, ok := se.sessions[sessionID]
log.Println(sess, ok)
if !ok {
se.sessions[sessionID] = &session{
lastTimestamp: currTS,