shiwenyuan / xdp-log
There is no license information available for the latest version (v1.0.1) of this package.
v1.0.1
2018-08-31 07:03 UTC
Requires (Dev)
- phpunit/phpunit: ^6.5
This package is auto-updated.
Last update: 2025-03-01 00:13:24 UTC
README
use
@mkdir(__DIR__."/logs"); $num = rand(1,100); $GLOBALS['LOG'] = [ 'log_file' => __DIR__."/logs/".$num.'.log', 设置log目录 'log_level' => \XdpLog\MeLog::LOG_LEVEL_ALL,设置写入log级别 如果小于这个级别则不被记录 ]; MeLog::debug('aaaa'); MeLog::warning('aaaa'); MeLog::fatal('aaaa'); MeLog::notice('aaaa'); MeLog::trace('aaaa');