From 247cf614f3cb9f6e683b85669fa386f59e09639f Mon Sep 17 00:00:00 2001 From: Deon George Date: Mon, 11 Dec 2023 08:48:30 +1100 Subject: [PATCH] Fix log note for PING netmails --- app/Notifications/Netmails/Ping.php | 2 +- app/Notifications/Netmails/Test.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Notifications/Netmails/Ping.php b/app/Notifications/Netmails/Ping.php index 4ae18ff..ec21d72 100644 --- a/app/Notifications/Netmails/Ping.php +++ b/app/Notifications/Netmails/Ping.php @@ -44,7 +44,7 @@ class Ping extends Netmails $o = $this->setupNetmail($so,$notifiable); $ao = $notifiable->routeNotificationFor(static::via); - Log::info(sprintf('%s:+ Creating test netmail to [%s]',self::LOGKEY,$ao->ftn)); + Log::info(sprintf('%s:+ Creating PING netmail to [%s]',self::LOGKEY,$ao->ftn)); $o->to = $this->mo->user_from; $o->replyid = $this->mo->msgid; diff --git a/app/Notifications/Netmails/Test.php b/app/Notifications/Netmails/Test.php index 23ec3fc..1a2a6a9 100644 --- a/app/Notifications/Netmails/Test.php +++ b/app/Notifications/Netmails/Test.php @@ -27,7 +27,7 @@ class Test extends Netmails $o = $this->setupNetmail($so,$notifiable); $ao = $notifiable->routeNotificationFor(static::via); - Log::info(sprintf('%s:+ Creating test netmail to [%s]',self::LOGKEY,$ao->ftn)); + Log::info(sprintf('%s:+ Creating TEST netmail to [%s]',self::LOGKEY,$ao->ftn)); $o->subject = 'Testing 1, 2, 3...';