*: 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

@ -458,7 +458,7 @@
"check_reason": "Reason: {{reason}}", "check_reason": "Reason: {{reason}}",
"check_rule": "Rule: {{rule}}", "check_rule": "Rule: {{rule}}",
"check_service": "Service name: {{service}}", "check_service": "Service name: {{service}}",
"check_not_found": "Doesn't exist in any filter", "check_not_found": "Not found in your filter lists",
"client_confirm_block": "Are you sure you want to block the client \"{{ip}}\"?", "client_confirm_block": "Are you sure you want to block the client \"{{ip}}\"?",
"client_confirm_unblock": "Are you sure you want to unblock the client \"{{ip}}\"?", "client_confirm_unblock": "Are you sure you want to unblock the client \"{{ip}}\"?",
"client_blocked": "Client \"{{ip}}\" successfully blocked", "client_blocked": "Client \"{{ip}}\" successfully blocked",

View File

@ -152,7 +152,7 @@ func (a *Auth) addSession(data []byte, s *session) {
a.sessions[name] = s a.sessions[name] = s
a.lock.Unlock() a.lock.Unlock()
if a.storeSession(data, s) { 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)
} }
} }