This package allows you to easily integrate Logsnag into your Laravel application.
You can install the package via composer:
composer require pgtruesdell/laravel-logsnag
You can publish the config file with:
php artisan vendor:publish --tag="laravel-logsnag-config"
This is the contents of the published config file:
return [
/**
* The project name.
*/
'project' => env('LOGSNAG_PROJECT', 'my-laravel-app'),
/**
* The default channel name for the monolog driver.
*/
'channel' => env('LOGSNAG_CHANNEL', 'app-events'),
/**
* Your logsnag API token.
*/
'token' => env('LOGSNAG_TOKEN', ''),
/**
* A mapping of icons for logging.
*/
'icons' => [
'DEBUG' => 'ℹ️',
'INFO' => 'ℹ️',
'NOTICE' => '📌',
'WARNING' => '⚠️',
'ERROR' => '⚠️',
'CRITICAL' => '🔥',
'ALERT' => '🔔️',
'EMERGENCY' => '💀',
],
];
Using the built-in helper function:
logsnag(
'app',
'Artist Created',
'Artist id 589 created by user 2',
'🎨',
);
Using the facade:
use PGT\Logsnag\Facades\Logsnag;
Logsnag::log(
channel: 'app',
event: 'Artist Created',
description: 'Artist id 589 created by user 2',
icon: '🎨',
notify: false
);
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.