From 545d3ecb65ad4552e34b4f3da247218ca62131d2 Mon Sep 17 00:00:00 2001 From: shohamroditimemphis Date: Sun, 7 Jan 2024 17:33:14 +0200 Subject: [PATCH] fix log --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index d02c15f37..58e8bd563 100644 --- a/main.go +++ b/main.go @@ -211,7 +211,7 @@ func main() { // we do this check here and not below the function creating the users - CreateUsersFromConfigOnFirstSystemLoad because we need the s *Server for logs if errCreateUsers != nil { - s.Warnf("[tenant: %v]Failed create users from config file", s.MemphisGlobalAccountString(), errCreateUsers.Error()) + s.Warnf("[tenant: %v]Failed create users from config file %v", s.MemphisGlobalAccountString(), errCreateUsers.Error()) } if lenUsers > 0 { s.Noticef("[tenant: %v]loaded %d users from config file", s.MemphisGlobalAccountString(), lenUsers)