molajo/log

Molajo Logs: Basic PSR-3 compliant Log Package for PHP applications

Installs: 438

Dependents: 2

Suggesters: 0

Security: 0

Stars: 4

Watchers: 5

Forks: 0

Open Issues: 1

Type:molajo-package

v0.2 2014-01-03 22:33 UTC

This package is auto-updated.

Last update: 2024-04-08 03:49:24 UTC


README

Build Status

Simple, clean API for PHP applications to use with logging.

At a glance ...

First, the application connects to a Log Handler. Then, the application can use that connection to perform log operations.

Example

    // Connect to Log Handler
    use Molajo\Log\Connection;
    $adapter = new Connection('Memory');

    // Use connection for log operations
    $adapter->log($level, $message, $context = array());

    // Use connection to retrieve the entire log
    $log = $adapter->get();

Requirements and Compliance

Install using Composer from Packagist

Step 1: Install composer in your project

    curl -s https://getcomposer.org/installer | php

Step 2: Create a composer.json file in your project root

{
    "require": {
        "Molajo/Log": "1.*"
    }
}

Step 3: Install via composer

    php composer.phar install

Author

Amy Stephen - AmyStephen@Molajo.org - http://twitter.com/AmyStephen
See also the list of contributors participating in this project.

License

Molajo Log is licensed under the MIT License - see the LICENSE file for details