aloframework / log
The logger of AloFramework
Installs: 423
Dependents: 4
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/aloframework/log
Requires
- php: >=5.5
- aloframework/common: ^2.0
- aloframework/config: ^2.0
- psr/log: ^1.0
README
A simple, configurable logger implementing the PSR-3 standards interface.
Latest release API documentation: https://aloframework.github.io/log/
| dev-develop | Release |
|---|---|
Installation
Installation is available via Composer:
composer require aloframework/log
Usage
<?php use AloFramework\Log\Log; $log = new Log(); $log->notice('My notice message'); $log->error('An error message');
Configuration
General configuration guidelines can be found here.
The following configuration keys available:
Config::LOG_LABEL: How the log entries will get labelled (default:SYSTEM)Config::LOG_LEVEL: Minimum log level to log (default:LogLevel::DEBUG)Config::SAVE_PATH: The log file's location (default:src/logs/YYYY-mm-dd.log). Alternatively, you can pass a file handle (opened byfopen())Config::LOCK_FILE: Controls whether file locking should take place while writing log entries (default:true)