定制 onnerby/doelogger 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

onnerby/doelogger

最新稳定版本:1.0

Composer 安装命令:

composer require onnerby/doelogger

包简介

JSON log writer/reader

关键字:

README 文档

README

A JSON logger for PHP Sometimes you need to log stuff - but you may need to read the log later on and be able to intepret the content of the log in a nice way. This is where JSON is perfect since you can serialize and deserialize in a simple way. The log uses file locks to prevent corrupt files.

\Doe\Logger

The Doe\Logger is designer to make it super simple to log data and also to read the log.

Installation

composer require onnerby/doelogger

Basic example

// Initialize the log by
\Doe\Logger::addDefaultStream('/var/log/mylog')

// The anywhere in your code
\Doe\Logger::write('adduser', 'Added a new user', $user);

This will make a log entry adduser with the data provided. The logger will create a file at /var/log/mylog_2023-01-02.json (if it's not there already) and write a json entry in that log looking something like this

{
	"when": 1672656212.123,
	"type": "adduser",
	"content": [
		...
	]
}

Reading

// Initialize the log by
\Doe\Logger::addDefaultStream('/var/log/mylog')

// Get a reader for the last 24 hours
$logReader = \Doe\Logger::reader('default', microtime(true) - 60*60*24);

// Loop through the log
foreach ($logReader as $logEntry) {
	echo "Log " . date('Y-m-d H:i:s', $logEntry['when']) . ' ' . $logEntry['type'] . "\n";
	echo "  User: " . json_encode($logEntry['content'][0]) . "\n";
}

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-01-02