From 2b0042cdc7e2fa00c60da2715309ae67edf54b83 Mon Sep 17 00:00:00 2001 From: sualko Date: Wed, 4 Aug 2021 16:38:06 +0200 Subject: [PATCH] fix: log response message if meeting could not be created --- lib/BigBlueButton/API.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/BigBlueButton/API.php b/lib/BigBlueButton/API.php index 1b5645c..5d9d580 100644 --- a/lib/BigBlueButton/API.php +++ b/lib/BigBlueButton/API.php @@ -131,7 +131,7 @@ class API { } if (!$response->success()) { - throw new \Exception('Can not create meeting'); + throw new \Exception('Can not create meeting: ' . $response->getMessage()); } if ($response->getMessageKey() !== 'duplicateWarning') {