Filtering for possible errors

This commit is contained in:
Valentin Popov 2017-10-27 12:41:15 +04:00
parent 8afc94b51c
commit 31ecf15e95

View File

@ -113,11 +113,17 @@ class handler {
* @param object $callback
*/
private static function logger($callback, $response) {
$event = \local_webhooks\event\response_get::create(array(
"context" => \context_system::instance(0),
"objectid" => $callback->id,
"other" => array(
"status" => $response["HTTP/1.1"]
$status = "Error sending request";
if (!empty($response["HTTP/1.1"])) {
$status = $response["HTTP/1.1"];
}
$event = \local_webhooks\event\response_get::create(
array(
"context" => \context_system::instance(0),
"objectid" => $callback->id,
"other" => array(
"status" => $status
)
));