From 4f6d06599073e885a6b232195bb9c5ca315eb44f Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Wed, 6 Oct 2021 17:35:09 -0400 Subject: [PATCH] Working on user login, verification, and password change. --- app/routers/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routers/user.py b/app/routers/user.py index 2f8a15f..6e5b08d 100644 --- a/app/routers/user.py +++ b/app/routers/user.py @@ -100,7 +100,7 @@ async def user_obj_change_password( exclude_unset: bool = True, response: Response = Response, ): - log.setLevel(logging.DEBUG) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL + log.setLevel(logging.INFO) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL log.debug(locals()) if password := user_obj.password: pass