Skip to content

PSR-3 compliant wrapper for Zend Framework 1's Logger

Notifications You must be signed in to change notification settings

roelarents/zf1-log-psr3

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PSR-3 compliant wrapper for Zend Framework 1's Logger

Did you ever want to use your good old (fashioned) ZF1 logger in a modern loosely coupled library that expects a PSR-3 compliant logger? Then this is the library for you. You can keep your existing logger (e.g. to share with other components of your software) and disguise it to feed it to the new library.

Features

  • PSR-3 style placeholders are rewritten to ZF1 style. E.g. {example} becomes %example%. (Can be disabled.)
  • logLevel is added to the extras cq context array. (Can be disabled.)
  • (Not directly related to the goal of this library, but useable for testing:) A very basic implementation of Zend_Log_Writer_Abstract is available: MemoryWriter. It keeps the formatted logged messages in memory, to be retrieved later.

Usage

Require this package with composer and use its autoloader.

// Start with your existing instance of Zend_Log.
$myZendLog = new \Zend_Log();

// Optionally create a configuration array.
$optionalConfig = ['foo' => 'bar'];

// Instantiate the Wrapper from the existing Zend_Log and optionally the configuration.
$myPsr3CompliantLogger = new \Boerl\Zf1LogPsr3\Wrapper($myZendLog, $optionalConfig);

For available configuration options, look at Wrapper::getDefaultConfig().

Links

About

PSR-3 compliant wrapper for Zend Framework 1's Logger

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%