diff --git a/frontend/src/routes/(authentication)/login/+page.server.ts b/frontend/src/routes/(authentication)/login/+page.server.ts index e825833bb..ece7a90c4 100644 --- a/frontend/src/routes/(authentication)/login/+page.server.ts +++ b/frontend/src/routes/(authentication)/login/+page.server.ts @@ -50,7 +50,7 @@ export const actions: Actions = { if (!res.ok) { const response = await res.json(); - console.log(response.non_field_errors); + console.error(response); if (response.non_field_errors) { setError(form, 'non_field_errors', response.non_field_errors); }