Download the PHP package che/log-stock without Composer
On this page you can find all versions of the php package che/log-stock. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download che/log-stock
More information about che/log-stock
Files in che/log-stock
Download che/log-stock
More information about che/log-stock
Files in che/log-stock
Vendor che
Package log-stock
Short Description Static Logger Factory
License MIT
Homepage http://github.com/chEbba/LogStock
Package log-stock
Short Description Static Logger Factory
License MIT
Homepage http://github.com/chEbba/LogStock
Please rate this library. Is it a good library?
Informations about the package log-stock
LogStock - Static Logger Manager 
Logging functionality is required in all classes, so it is one of situations where static code is a good choice. Now you can create more logs with your preferred logging library.
Installation
Composer package is available.
Or just clone the repository (or download versions by tags) and include the library with PSR-0 autoloader.
Usage
namespace Acme\Foo;
use Che\LogStock\LoggerManager;
class Bar
{
private $logger;
public function __construct()
{
$this->logger = LoggerManager::getLogger(__CLASS__);
}
public function doSomething($param)
{
$this->logger->info('Do something.', array('param' => $param));
//...
}
}
Integration
- Symfony2 - LogStockBundle.
Author
Kirill chEbba Chebunin [email protected].
License
LogStock is subject to the MIT license that is bundled with this package in the file LICENSE.
All versions of log-stock with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.2
The package che/log-stock contains the following files
Loading the files please wait ....