From 488ef7531356e749a58f21d98554845f11af5ca1 Mon Sep 17 00:00:00 2001 From: Bruno Sofiato Date: Thu, 30 Jan 2025 10:47:49 -0300 Subject: [PATCH] Changed the logging level org name change messsage Co-authored-by: delvh --- routers/api/v1/org/org.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routers/api/v1/org/org.go b/routers/api/v1/org/org.go index f1c5b0e41a4..ade3e2ec183 100644 --- a/routers/api/v1/org/org.go +++ b/routers/api/v1/org/org.go @@ -357,7 +357,7 @@ func Rename(ctx *context.APIContext) { ctx.ServerError("RenameOrg", err) } } else { - log.Trace("Org name changed: %s -> %s", oldName, form.NewName) + log.Info("Org name changed: %s -> %s", oldName, form.NewName) ctx.Status(http.StatusNoContent) } }