diff --git a/LibreNMS/Alert/AlertUtil.php b/LibreNMS/Alert/AlertUtil.php index ed65e9bcc6..30e0aa5add 100644 --- a/LibreNMS/Alert/AlertUtil.php +++ b/LibreNMS/Alert/AlertUtil.php @@ -148,7 +148,7 @@ class AlertUtil public static function findContactsRoles(array $roles): array { - return User::whereIs(...$roles)->whereNot('email', '')->dumpRawSql()->pluck('realname', 'email')->toArray(); + return User::whereIs(...$roles)->whereNot('email', '')->pluck('realname', 'email')->toArray(); } public static function findContactsSysContact(array $results): array