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