From 25521b18ffdb02748967842e19992584488fcd3e Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 14 Oct 2025 12:33:24 +0200 Subject: [PATCH] :sparkles: Make the restriction errors report as warning to logging --- backend/src/app/http/errors.clj | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/src/app/http/errors.clj b/backend/src/app/http/errors.clj index eaeb9eef7e..0ad134c927 100644 --- a/backend/src/app/http/errors.clj +++ b/backend/src/app/http/errors.clj @@ -61,8 +61,7 @@ ::yres/body data} (binding [l/*context* (request->context request)] - (l/err :hint "restriction error" - :cause err) + (l/wrn :hint "restriction error" :cause err) {::yres/status 400 ::yres/body data}))))