mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 08:35:00 +00:00
Replace log.
This commit is contained in:
@@ -26,6 +26,7 @@ namespace FireflyIII\Events\Test;
|
||||
|
||||
use FireflyIII\Notifications\Notifiables\OwnerNotifiable;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
|
||||
class OwnerTestNotificationChannel
|
||||
{
|
||||
@@ -38,7 +39,7 @@ class OwnerTestNotificationChannel
|
||||
*/
|
||||
public function __construct(string $channel, public OwnerNotifiable $owner)
|
||||
{
|
||||
app('log')->debug(sprintf('Triggered OwnerTestNotificationChannel("%s")', $channel));
|
||||
Log::debug(sprintf('Triggered OwnerTestNotificationChannel("%s")', $channel));
|
||||
$this->channel = $channel;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user