*: lang fix

This commit is contained in:
Andrey Meshkov
2020-02-13 18:35:54 +03:00
parent b4649a6b27
commit 2df5f281c4
2 changed files with 2 additions and 2 deletions

View File

@@ -152,7 +152,7 @@ func (a *Auth) addSession(data []byte, s *session) {
a.sessions[name] = s
a.lock.Unlock()
if a.storeSession(data, s) {
log.Info("Auth: created session %s: expire=%d", name, s.expire)
log.Debug("Auth: created session %s: expire=%d", name, s.expire)
}
}