packfire/logger

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (1.0.1) of this package.

A standard logger that implements Psr/Log

1.0.1 2014-01-04 01:49 UTC

This package is not auto-updated.

Last update: 2021-05-23 22:20:05 UTC


README

#Packfire Logger

Build Status Latest Stable Version Total Downloads

Logger provides simplest log file implementation of the LoggerInterface provided by PHP Framework Interop Group .

In this library, Packfire\Logger\File is provided to write log entries to a file based on the interface provided by Psr\Log\LoggerInterface.

<?php
use Packfire\Logger\File as Logger;

$logger = new Logger('app.log');
$logger->info('Setting up the application');