Fix casing in LoggerConfig.

This commit is contained in:
meadsteve 2013-11-28 21:18:11 +00:00
commit c8dc8a67b7
3 changed files with 15 additions and 15 deletions

View file

@ -46,7 +46,7 @@ class LoggerConfig {
* @param $name
* @return Logger
*/
public function GetFor($name) {
public function getFor($name) {
$handlers = $this->getHandlers(self::KEY_AlwaysLoaded);
$handlers = array_merge($handlers, $this->getHandlers($name));
return new Logger($name, $handlers);