From cc041b5e0aa2b67573edba5919772b77a5111162 Mon Sep 17 00:00:00 2001 From: Fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Date: Sun, 11 Jun 2023 07:26:45 +0500 Subject: [PATCH] fix(logs): jellyfin auth error now has the severity warn consistent with local login fix #224 --- server/routes/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/routes/auth.ts b/server/routes/auth.ts index 1dabcdf31..7adcc73ab 100644 --- a/server/routes/auth.ts +++ b/server/routes/auth.ts @@ -380,7 +380,7 @@ authRoutes.post('/jellyfin', async (req, res, next) => { return res.status(200).json(user?.filter() ?? {}); } catch (e) { if (e.message === 'Unauthorized') { - logger.info( + logger.warn( 'Failed login attempt from user with incorrect Jellyfin credentials', { label: 'Auth',