saurav-suman/logger
最新稳定版本:v2.7
Composer 安装命令:
composer require saurav-suman/logger
包简介
PHP client to publish realtime logs to rabbitmq
README 文档
README
logging-php supports log levels And you can publish log to rabbitMQ for now.
Another logging library, Why?
Logging libraries are like opinions, everyone needs one depends upon the need.
And how is logging-php different?
- RabbitMQ Integration
Usage/examples:
Publish to RabbitMQ using a logging-php instantiated like so:
<?php require __DIR__.'../../vendor/autoload.php'; use Logging\Logging; $log=new Logging(); $log->setRabbitmqHost("127.0.0.1"); $log->setRabbitmqPort("5672"); $log->setRabbitmqUser("guest"); $log->setRabbitmqPassword("guest"); $log->setQueuePrefix("ayopop"); $log->setQueueNames(array("Api" => "api", "Debug" => "debug", "Info" => "info", "Warn" => "warning", "Error" => "error", "Critical" => "critical")); $log->connect(); $log->info("saurav",array("foo"=>"bar")); $log->warning("saurav",array("foo"=>"bar"));
Contributing
- Create an issue, describe the bugfix/feature you wish to implement.
- Fork the repository
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request
统计信息
- 总下载量: 2.79k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-04-24