linkorb/app-event
Composer 安装命令:
composer require linkorb/app-event
包简介
Provides a way for applications to integrate a standard scheme for logging Application Events
README 文档
README
This library provides a way for applications to integrate a standard scheme for logging Application Events. Specifically, it provides:
-
AppEventFormatter, which:
-
normalises Monolog log records to the structure required for LinkORB Application Events and
-
formats the log records as Newline Delimited JSON (ndjson)
-
-
AppEventLoggerAwareInterface which describes a method (
setAppEventLogger) by which an Application Event Logger may be injected into services and controllers which need to log Application Events -
AppEventLoggerInterface which describes a method (
log) by which services may log Application Events -
AppEventLoggerTrait which provides implementations of AppEventLoggerAwareInterface and AppEventLoggerInterface
An example:-
class MyService implements AppEventLoggerAwareInterface, AppEventLoggerInterface { use AppEventLoggerTrait; public function doSomething() { // ... do something ... $this->log('something.was.done', ['some-info' => '...', 'more' => ...]); } }
统计信息
- 总下载量: 796
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-08-12