- Strip configuration.local.php to logger-only defaults - Remove db, solr, session, checkfile_url, worker IDs (unused legacy) - Clean credential comments from logger config files - Add .env.example template - Add .env to .gitignore
14 lines
344 B
PHP
14 lines
344 B
PHP
<?php
|
|
use Bsr\Utils\Logger\Logger;
|
|
|
|
/**
|
|
* Logger configuration - verbose verbosity
|
|
*/
|
|
return array(
|
|
'log' => array(
|
|
'file' => realpath(dirname(__FILE__) . '/..') . '/log/log.txt',
|
|
'format' => '%ip% - [%date%] - %status% %error% - %time% - %func%',
|
|
'verbosity' => Logger::VERBOSE,
|
|
),
|
|
);
|