From 7eb3f2aad048d586c195f51ac2ebde32b5196b76 Mon Sep 17 00:00:00 2001 From: aymm Date: Thu, 11 Mar 2021 06:00:04 +0000 Subject: [PATCH] Fixed getPoll for missing poll tokens --- src/APnutI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/APnutI.php b/src/APnutI.php index d022219..f4bd3ee 100644 --- a/src/APnutI.php +++ b/src/APnutI.php @@ -467,7 +467,7 @@ class APnutI $this->logger->error('Poll not supported: '.json_encode($res)); throw $e; } catch (HttpPnutForbiddenException $fe) { - $this->logger->error('Poll token required and not provided!: '.json_encode($res)); + $this->logger->error('Poll token required and not provided!'); throw $fe; } }