farshidrezaei/laralog
Composer 安装命令:
composer require farshidrezaei/laralog
包简介
a Laravel package which help you to submit your application actions
README 文档
README
requirement : Laravel ^5.0
farshidrezaei/laralog is a Laravel package which help you to submit your application actions.
Install
To install through Composer, by run the following command:
composer require farshidrezaei/laralog
The package will automatically register a service provider.
then publish the package's configuration file, migrations and helpers by running:
php artisan vendor:publish --provider="FarshidRezaei\LaraLog"
Documentation
Configs
in the configs/laralog.php you can set the log drivers;
'db_driver' => true, 'file_driver' => true,
if
db_driver => true, logs table will create, logs will submit in database and submit method return submitted log object.
if
file_driver' => true, logs file will created, logs will submit in log file in "storage/app/LaraLog/" and ifdb_driver===false, submit method return string of submitted log line in the log file.
Create table
after install package and set configs,for create logs table, run
php artisan migrate
Usage
you can use this syntax to submit logs:
LaraLog::new() ->level( /* 'info', 'success', 'warning', 'danger' */) //default:'info' ->subject( 'Subject of the action' ) //nullable ->message( 'Message of the action' ) //nullable ->user( /* true (set who did this action.), false (dont set who did this action) */ ) //default:false ->submit();
for easy usage, you can use helper function, too:
laralog() ->level( 'info') ->subject( 'Product' ) ->message( "Product [$product->title]($product->id) created." ) ->user( true ) ->submit();
you can access to submitted log :
$log = laralog() ->level( 'info') ->subject( 'Product' ) ->message( "Product Created" ) ->user( false ) ->submit();
Assuming db_driver===true in configs/laralog.php, $log is equal to :
{
"id": 1,
"level": "info",
"subject": "Product",
"message": "Product created.",
"user_id": null
}
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 9
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-05-16