icecave/stump

Incredibly simple PSR-3 compliant logging for Twelve-Factor applications.

0.6.0 2016-03-15 23:57 UTC

README

Build Status Test Coverage SemVer

Stump is a simple PSR-3 compliant logger for Twelve-Factor applications.

Example

The provided logger simply prints log output to STDOUT, as per the Twelve-Factor Application logging recommendations.

use Icecave\Stump\Logger;

$logger = new Logger();
$logger->info("It's better than bad... it's good!");

The output of the example above is:

2014-10-24 16:26:13 INFO It's better than bad... it's good!

Contact us