/home/desid573/public_html/family/pdd/lib/Cake/Log/Engine
NameSizeModeActions
BaseLog.php16880644editdlrm
ConsoleLog.php26200644editdlrm
FileLog.php57170644editdlrm
SyslogLog.php42960644editdlrm
Edit: /home/desid573/public_html/family/pdd/lib/Cake/Log/Engine/BaseLog.php (1688B)
config($config); } /** * Sets instance config. When $config is null, returns config array * * Config * * - `types` string or array, levels the engine is interested in * - `scopes` string or array, scopes the engine is interested in * * @param array $config engine configuration * @return array */ public function config($config = array()) { if (!empty($config)) { foreach (array('types', 'scopes') as $option) { if (isset($config[$option]) && is_string($config[$option])) { $config[$option] = array($config[$option]); } } $this->_config = $config; } return $this->_config; } }