diff --git a/dislocker_auth.py b/dislocker_auth.py index 71d7b29..7367494 100644 --- a/dislocker_auth.py +++ b/dislocker_auth.py @@ -55,6 +55,7 @@ auth = Auth(server_config["db"]["host"], server_config["db"]["db_name"], server_ def verify(): pc_number = int(request.json.get('pc_number')) password = request.json.get('password') + print(str(pc_number), str(password)) if auth.check(pc_number, password) == 0: auth.delete(pc_number)