loggfy/connect
Composer 安装命令:
composer require loggfy/connect
包简介
A Laravel package, helps to log into loggfy.com
README 文档
README
Installation
Add the following to your composer.json and run composer update
{
"require": {
"loggfy/connect": "dev-master"
}
}
Don't forget to dump composer autoload
composer dump-autoload
Open your config/app.php add following line in the providers array
Loggfy\Connect\LoggfyServiceProvider::class
Then in your bootstrap/app.php add / update your Monolog configuration.
$app->configureMonologUsing(function ($monolog) {
$monolog->pushHandler(new \Loggfy\Connect\Loggfy());
});
Run following command to publish migration and configuration
php artisan vendor:publish --provider="Loggfy\Connect\LoggfyServiceProvider"
Thats all now start to log the events.
Open config/loggfy.php file and update the settings.
USAGE
Do not fotget to include Log to your class
use Log;
And add log entry
Log::info('user.register', ['message' => 'User Registration Controller', 'id' => 23, 'name' => 'John Doe', 'email' => 'john@example.com']);
Browse to [loggfy.com]http://panel.loggfy.com, login to your account and check your log entry exists there.
Links
统计信息
- 总下载量: 21
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-03-08