ZF-12125: Support PHP 5.3 namespaces in custom Zend_Log writers
Description
Currently you cannot configure Zend_Log to use a custom PHP 5.3 namespaced writer.
$config = array(
'mine' => array(
'writerName' => 'Writer',
'writerNamespace' => '\Zfns\\',
)
);
$logger = Zend_log::factory($config);
Will fail, as it will try to find a class with the name \Zfns_Writer in the path /Zfns/
Comments
Posted by Andries Seutens (andries) on 2012-03-29T09:56:04.000+0000
Issue was resolved in svn r24702