Download the PHP package k1low/yalog without Composer
On this page you can find all versions of the php package k1low/yalog. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Vendor k1low
Package yalog
Short Description Yalog: Yet Another Logger for CakePHP
License MIT
Homepage https://github.com/k1LoW/yalog
Package yalog
Short Description Yalog: Yet Another Logger for CakePHP
License MIT
Homepage https://github.com/k1LoW/yalog
Please rate this library. Is it a good library?
Informations about the package yalog
Yalog: Yet Another Logger for CakePHP2.x
RotateFileLog
Usage
First, put `Yalog' directory on app/Plugin in your CakePHP application.
Second, add the following code in bootstrap.php.
<?php
CakePlugin::load('Yalog');
// or
// CakePlugin::loadAll();
App::uses('CakeLog', 'Log');
CakeLog::config('debug', array(
'engine' => 'Yalog.RotateFileLog',
'types' => array('notice', 'info', 'debug'),
'file' => 'debug',
));
CakeLog::config('error', array(
'engine' => 'Yalog.RotateFileLog',
'types' => array('warning', 'error', 'critical', 'alert', 'emergency'),
'file' => 'error',
));
Configure
Rotate
<?php
Configure::write('Yalog.RotateFileLog.weekly', true);
Configure::write('Yalog.RotateFileLog.rotate', 4);
Log4php (Sample)
Usage
First, put `Yalog' directory on app/Plugin in your CakePHP application.
Second, put log4php source directory on app/Plugin/Yalog/Vendor/log4php in your CakePHP application.
http://logging.apache.org/log4php/download.html
Third, add the following code in bootstrap.php.
<?php
CakeLog::config('debug', array(
'engine' => 'Yalog.Log4php',
'types' => array('notice', 'info', 'debug'),
'file' => 'debug',
));
CakeLog::config('error', array(
'engine' => 'Yalog.Log4php',
'types' => array('warning', 'error', 'critical', 'alert', 'emergency'),
'file' => 'error',
));
Configure
Modify following,
- app/Plugin/Yalog/Lib/Log/Engine/log4php.properties
- Log4php::write() in app/Plugin/Yalog/Lib/Log/Engine/log4php.php
License
MIT License
All versions of yalog with dependencies
PHP Build Version
Package Version
The package k1low/yalog contains the following files
Loading the files please wait ....