fix: update error logs

This commit is contained in:
Lakhan Samani
2021-12-17 21:12:53 +05:30
parent 537e08667a
commit 75a2b7effd
19 changed files with 29 additions and 44 deletions

View File

@@ -1,7 +1,6 @@
package session
import (
"log"
"sync"
)
@@ -30,8 +29,6 @@ func (c *InMemoryStore) AddToken(userId, accessToken, refreshToken string) {
c.store[userId] = tempMap
}
log.Println(c.store)
c.mu.Unlock()
}