jidaikobo/log 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

jidaikobo/log

最新稳定版本:v2.0.8

Composer 安装命令:

composer require jidaikobo/log

包简介

A simple logging class with error and exception handling. adheres to PSR-1, PSR-12 and PSR-3.

README 文档

README

MIT Build Status Scrutinizer Code Quality

jidaikobo/log

jidaikobo/log is a simple and flexible logging utility that adheres to the PSR-3 (Logger Interface) standard. It provides both instance-based and static methods for logging, making it easy to integrate into any PHP project.

This package was developed to simplify logging in small-scale projects, such as those using the Slim Framework. It also fulfills the need to log arrays efficiently, which can be crucial for debugging.

Features

  • PSR-3 compliant: Supports all standard logging levels.
  • Instance-based design: Fully compatible with dependency injection and modern PHP practices.
  • Static wrapper: Offers convenient static methods for quick and simple logging.
  • Log file rotation: Automatically rotates log files when they reach a specified size.
  • Error and exception handling: Integrates with PHP error and exception handling mechanisms.

Installation

Install the package via Composer:

composer require jidaikobo/log

Usage

Basic Initialization

Initialize the logger with a custom log file path and maximum file size (optional):

use Jidaikobo\Log;
Log::init('/path/to/log.log', 5 * 1024 * 1024); // 5MB max file size

If Log::init() is not explicitly called, the logger will use default settings.

Logging Messages

Log messages at various levels using static methods:

Log::info('This is an informational message.');
Log::warning('This is a warning message.');
Log::error('An error occurred.');
Log::debug('Debugging details.');

To output an array:

Log::write(['foo', 'bar', 'baz']);

Error and Exception Handling

Register the logger to handle PHP errors and uncaught exceptions:

Log::getInstance()->registerHandlers();

Requirements

  • PHP >= 7.4

License

This project is licensed under the MIT License, see the LICENSE file for details

Author

Link

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-12-11