承接 wyrihaximus/psr-3-context-logger 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

wyrihaximus/psr-3-context-logger

最新稳定版本:3.0.0

Composer 安装命令:

composer require wyrihaximus/psr-3-context-logger

包简介

PSR-3 context logger decorator

README 文档

README

Linux Build Status Latest Stable Version Total Downloads Code Coverage License PHP 7 ready

Installation

To install via Composer, use the command below, it will automatically detect the latest version and bind it with ^.

composer require wyrihaximus/psr-3-context-logger 

Usage without prefix

Without prefix the message remains untouched and just the context is merged.

$logger = new Psr3Logger();
$contextLogger = new ContextLogger($logger, ['key' => 'value']);
$contextLogger->info('Message'); // $logger will be called with: log('info', 'Message', ['key' => 'value']);

Usage with prefix

With prefix the given prefix, for example Github will be prefixed to the message within brackets: [Github] .

$logger = new Psr3Logger();
$contextLogger = new ContextLogger($logger, ['key' => 'value'], 'Prefix');
$contextLogger->info('Message'); // $logger will be called with: log('info', '[Prefix] Message', ['key' => 'value']);

Contributing

Please see CONTRIBUTING for details.

License

Copyright 2018 Cees-Jan Kiewiet

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

统计信息

  • 总下载量: 86.07k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 1
  • 依赖项目数: 11
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: Makefile

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-04-30