1
0
mirror of https://github.com/flarum/core.git synced 2025-07-18 15:21:16 +02:00

chore: remove debug line that slipped in while rebasing a PR (#3580)

Signed-off-by: Sami Mazouz <ilyasmazouz@gmail.com>
This commit is contained in:
Sami Mazouz
2022-08-04 10:43:26 +01:00
committed by GitHub
parent 71731819fb
commit f073c22212

View File

@@ -27,12 +27,6 @@ class SendNotificationWhenReplyIsPosted
public function handle(Posted $event)
{
$discussion = $event->post->discussion;
/** @var \Psr\Log\LoggerInterface $log */
$log = resolve('log');
$log->info("running subscriptions send notification when reply is posted listener. last_post_number: $discussion->last_post_number");
$this->queue->push(
new SendReplyNotification($event->post, $event->post->discussion->last_post_number)
);