Files
php-bsrutils/config/configuration.local.php
Guillermo Pages b6f048d81c refactor: remove hardcoded credentials from config
- 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
2026-01-14 14:15:02 +01:00

16 lines
474 B
PHP

<?php
use Bsr\Utils\Logger\Logger;
/**
* Default configuration for php-bsrutils library.
* Contains only logger defaults needed for the Logger class.
* Application-specific config should be in the consuming application's config files.
*/
return array(
'log' => array(
'file' => realpath(dirname(__FILE__) . '/..') . '/log/log.txt',
'format' => '%ip% - [%date%] - %status% %error% - %time% - %func%',
'verbosity' => Logger::NORMAL,
),
);