Remove debug as it is too frequent and not useful

pull/4202/head
Isaac Connor 2022-05-20 11:15:19 -04:00
parent 69267057c9
commit 2cbd07fd98
1 changed files with 0 additions and 2 deletions

View File

@ -128,8 +128,6 @@ function validateToken($token, $allowed_token_type='access') {
ZM\Error("Token type mismatch. Expected $allowed_token_type but got $type");
return array(false, 'Incorrect token type');
}
} else {
ZM\Debug('Not comparing token types as [any] was passed');
}
$username = $jwt_payload['user'];