# php-logger **Repository Path**: liuxiaojinla/php-logger ## Basic Information - **Project Name**: php-logger - **Description**: Logger 是基于PSR-3规范做的辅助工具类库,同时支持结合Monolog开源类库,推荐在Hyperf和Webman以及主流CLI模式应用下使用。 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-06-13 - **Last Updated**: 2024-06-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Logger | 日志管理器 #### 介绍 Logger 是基于PSR-3规范做的辅助工具类库,同时支持结合Monolog开源类库,推荐在Hyperf和Webman以及主流CLI模式应用下使用。 #### 安装教程 `composer require xin/logger` #### 使用说明 ```php info('hello world'); $logger->error('hello world'); $logger->warning('hello world'); $logger->log('success','hello world'); ```