diff --git a/src/Dev.php b/src/Dev.php index 08187f428..6bb0f8325 100644 --- a/src/Dev.php +++ b/src/Dev.php @@ -51,8 +51,11 @@ class Dev $this->getWhoopsPlaceholder(); } $this->getWhoopsLogger(); - $this->getTelegramSender(); - $this->getBugsnag(); + + if (APP_ENV !== 'local') { + $this->getTelegramSender(); + $this->getBugsnag(); + } $this->whoops->register(); }