Re: Multiple Loggers Using Config Array

2014-01-09 Thread Matt Brooks
Thank you Ivan, that was it. Again, thank you. Matt On Jan 1, 2014, at 8:25 AM, Ivan Habunek wrote: > There's an error in your config file. The "classALogger" should be > under "loggers". > > So, instead of this: > 'classALogger' => array('level' => 'DEBUG', 'appenders' => > array('classAAppen

Re: Multiple Loggers Using Config Array

2014-01-01 Thread Ivan Habunek
There's an error in your config file. The "classALogger" should be under "loggers". So, instead of this: 'classALogger' => array('level' => 'DEBUG', 'appenders' => array('classAAppender')), You need this: 'loggers' => array( 'classALogger' => array('level' => 'DEBUG', 'appenders' => array('cl