mikeevstropov/simple-logger

This package is abandoned and no longer maintained. No replacement package was suggested.

Simple way to create instance of Monolog\Logger

1.0.0 2017-07-10 14:00 UTC

This package is not auto-updated.

Last update: 2021-06-26 10:18:27 UTC


README

Simple way to create instance of Monolog\Logger

Installation

Add dependency mikeevstropov/simple-logger

$ composer require mikeevstropov/simple-logger

Usage

<?php
  
use Mikeevstropov\SimpleLogger\LoggerFactory;

$logger = LoggerFactory::create(
    'path/to/file.log',
    'DEBUG',
    'log-name'
);

// add records to the log
$logger->warning('Warning message');
$logger->error('Error message');
// .. or other levels described by RFC 5424

LoggerFactory Interface

  • create

    Returns instance of Monolog\Logger

    Arguments:

    • file (string) - path to the log file
    • level (string) - log level or "DEBUG" as default
    • name (string) - name of logger or "logger" as default

    Returns:

    • Monolog\Logger

Log Levels

Monolog supports the logging levels described by RFC 5424.

  • DEBUG (100): Detailed debug information.

  • INFO (200): Interesting events. Examples: User logs in, SQL logs.

  • NOTICE (250): Normal but significant events.

  • WARNING (300): Exceptional occurrences that are not errors. Examples: Use of deprecated APIs, poor use of an API, undesirable things that are not necessarily wrong.

  • ERROR (400): Runtime errors that do not require immediate action but should typically be logged and monitored.

  • CRITICAL (500): Critical conditions. Example: Application component unavailable, unexpected exception.

  • ALERT (550): Action must be taken immediately. Example: Entire website down, database unavailable, etc. This should trigger the SMS alerts and wake you up.

  • EMERGENCY (600): Emergency: system is unusable.

Development

Clone

$ git clone https://github.com/mikeevstropov/simple-logger.git

Go to project

$ cd simple-logger

Install dependencies

$ composer install

Run the tests

$ composer test