Skip to content

Commit a803960

Browse files
committedOct 22, 2023
Remove debugging log message
1 parent f2f88f0 commit a803960

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed
 

‎gormstore/gormstore.go

-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ func NewWithCleanupInterval(db *gorm.DB, cleanupInterval time.Duration) (*GORMSt
5050
func (g *GORMStore) Find(token string) (b []byte, exists bool, err error) {
5151
s := &session{}
5252
row := g.db.Where("token = ? AND expiry >= ?", token, time.Now()).Limit(1).Find(s)
53-
log.Println("HIT")
5453
if row.Error != nil {
5554
return nil, false, row.Error
5655
}

0 commit comments

Comments
 (0)
Please sign in to comment.