Added logging for SMS
This commit is contained in:
parent
9cc381a709
commit
a38d47809a
1 changed files with 3 additions and 0 deletions
|
|
@ -26,7 +26,9 @@ final class SmsNotifier
|
||||||
|
|
||||||
public function notify(User $user, string $subject): ?SentMessage
|
public function notify(User $user, string $subject): ?SentMessage
|
||||||
{
|
{
|
||||||
|
$this->logger->info('SMS Notification');
|
||||||
if (!$user->canBeNotifiedBySms()) {
|
if (!$user->canBeNotifiedBySms()) {
|
||||||
|
$this->logger->warning('User cannot be notified by SMS');
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -54,5 +56,6 @@ final class SmsNotifier
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
$this->logger->info('SMS Sent Successfully');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue