From 0db3c625e8c4e71a6a42359b820a50f7efcf1ca9 Mon Sep 17 00:00:00 2001 From: Benjamin Wind Date: Mon, 29 Apr 2019 14:00:00 +0200 Subject: [PATCH] Removed API-Key and PlanePassword logging --- app/models.py | 2 -- 1 file changed, 2 deletions(-) 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')) \