h22k / logma
小型项目的日志库
0.0.3
2024-04-29 18:09 UTC
Requires
- psr/log: ^3.0
Requires (Dev)
- friendsofphp/php-cs-fixer: dev-master
- mikey179/vfsstream: ^1.6.11
- phpstan/phpstan: 2.0.x-dev
- phpunit/phpunit: ^11.0.0
This package is auto-updated.
Last update: 2024-09-29 19:51:00 UTC
README
Logma
Logma 是一个简单的日志工具。它的名字来源于土耳其语单词 Lokma 和 log 的组合。
安装
composer require h22k/logma
使用/示例
待办:将添加更多示例。
<?php use H22k\Logma\Formatter\PlainTextFormatter; use H22k\Logma\Logma; use H22k\Logma\Resource\StreamResource; use H22k\Logma\Source\StreamSource; $logma = new Logma( 'logma', ); $source = new StreamSource( new StreamResource(__DIR__.'/storage/test.log'), new PlainTextFormatter()); $logma->addSource($source); $logma->info('first log'); // OUTPUT: [29/04/24 07:18:48] logmaTest.INFO | first log a:0:{}