From 8236715042b688f30bcb7d872bf6c529e291d9c3 Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Wed, 30 Dec 2020 12:04:38 -0500 Subject: [PATCH] Authy --- auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth.go b/auth.go index ddd26a0..bb43d3e 100644 --- a/auth.go +++ b/auth.go @@ -78,7 +78,7 @@ func usePassword(user string, pass string, ip string) bool { tok := toks[user] delete(toks, user) if time.Since(tok.Timestamp) > (time.Minute * 5) { - log.LogWarn(fmt.Sprintf("%s attempted to use expired token. %+v", user, time.Since(tok.Timestamp))) + log.LogWarn("%s attempted to use expired token. %+v, %+v, %+v", user, time.Since(tok.Timestamp), tok.Timestamp, time.Now()) return false } if tok.IP != ip {