Setup your log handlers per environment in your Laravel application.
CURRENTLY UNDER DEVELOPMENT
PHP 7.0+ required.
To get the latest version of Laralog, simply require the project using Composer:
$ composer require laralog/laralog
Instead, you may of course manually update your require block and run composer update
if you so choose:
{
"require": {
"laralog/laralog": "dev-master"
}
}
Package will be automatically discovered when running composer update
or php artisan package:discover
.
Once Laralog is installed, you need to register the service provider. Open up config/app.php
and add the following to the providers
key.
<?php
'providers' => [
...
Laralog\LaralogServiceProvider::class,
],
Laralog requires configuration.
To get started, you'll need to publish all vendor assets:
$ php artisan vendor:publish
This will create a config/laralog.php
file in your app that you can modify to set your configuration.
Also, make sure you check for changes to the original config file in this package between releases.
To add an environment configuration, add a key to the environment array, with the name of your environment and containing an array with the handlers you want to use, for example:
'environments' => [
'local' => ['slack']
]
To add a handler configuration, add a key to the handlers array, with the name of your handler and the required information for it.
'handlers' => [
'slack' => [
'api_key' => 'YOUR_SLACK_API_KEY',
'channel' => '#general'
]
]
Use the logging methods from Laravel as usual ;)
https://laravel.com/docs/5.2/errors#logging
- SlackHandler (To generate a token on Slack)
- NativeMailerHandler
- SwiftMailerHandler
- HipChatHandler
- NewRelicHandler
- LogglyHandler
- RollbarHandler
- PushoverHandler
- ChromePHPHandler
- PHPConsoleHandler
- BugsnagHandler