diff --git a/app/models.py b/app/models.py index ff8338f..73ac7a7 100644 --- a/app/models.py +++ b/app/models.py @@ -2331,8 +2331,6 @@ class ApiKey(db.Model): Validate user credential """ if method == 'LOCAL': - logging.debug(self.plain_text_password) - logging.debug(self.get_hashed_password(self.plain_text_password)) passw_hash = self.get_hashed_password(self.plain_text_password) apikey = ApiKey.query \ .filter(ApiKey.key == passw_hash.decode('utf-8')) \