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.
farshidrezaei/laralog 适用场景与选型建议
farshidrezaei/laralog 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 9 次下载、GitHub Stars 达 3, 最近一次更新时间为 2019 年 05 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 farshidrezaei/laralog 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 farshidrezaei/laralog 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 9
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-05-16