The logger of AloFramework

3.0.1 2016-11-07 22:03 UTC

README

A simple, configurable logger implementing the PSR-3 standards interface.

License Latest Stable Version Total Downloads

Latest release API documentation: https://aloframework.github.io/log/

dev-develop Release
Dev Build Status Release Build Status
Coverage Status Coverage Status

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 by fopen())
  • Config::LOCK_FILE: Controls whether file locking should take place while writing log entries (default: true)