PHP code example of jkachel / codeigniter-monolog-plus
1. Go to this page and download the library: Download jkachel/codeigniter-monolog-plus library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jkachel / codeigniter-monolog-plus example snippets
$config = array(
// Global opts
'introspection_processor' => true,
...
// Handlers
'handlers' => array(
'ci_file' => array( 'default' => array( /* its config options */ ), 'testConfig' => array()),
'file' => array( 'default' => array() ),
),
// Priority
'priority' => array(
'ci_file', // use default settings for this one
array('file' => 'justInfos') // specific settings for this handler
)
);