From 4305927d15259e4ff936ff6a8c9b8116e4e7cd54 Mon Sep 17 00:00:00 2001 From: paolospag Date: Wed, 11 May 2022 09:32:30 +0200 Subject: [PATCH] Remove codecept_debug which causes internal server error --- src/Auth.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Auth.php b/src/Auth.php index 0103f22..4e8cacb 100644 --- a/src/Auth.php +++ b/src/Auth.php @@ -584,8 +584,6 @@ public static function validate_token( $token = null, $refresh = false ) { */ JWT::$leeway = 60; - codecept_debug( [ 'tokenYo' => $token ] ); - try { $token = ! empty( $token ) ? JWT::decode( $token, new Key( self::get_secret_key(), 'HS256') ) : null; } catch ( Exception $exception ) {