From 8d76746ff671d315ec9937e7b592cc150f868939 Mon Sep 17 00:00:00 2001 From: Louis Jeckel Date: Mon, 7 Sep 2020 09:38:05 +0200 Subject: [PATCH] Update DispatchMailgunEvent.php --- app/Events/DispatchMailgunEvent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Events/DispatchMailgunEvent.php b/app/Events/DispatchMailgunEvent.php index 8617708..93c5f35 100644 --- a/app/Events/DispatchMailgunEvent.php +++ b/app/Events/DispatchMailgunEvent.php @@ -54,7 +54,7 @@ class DispatchMailgunEvent implements ShouldBroadcast $this->broadcast = in_array(config('app.env'), $tags, true) && ($event->wasRecentlyCreated); - \Log::info("broadcast : $this->broadcast"); + \Log::info("broadcast : " . ($this->broadcast ? "yes" : "no") . " " . config('app.env') . ' | ' . implode(',', $tags) . " | " ); $event->touch(); -- 2.39.5