Skip to content

Commit

Permalink
Merge pull request #425 from cs-daniel/patch-1
Browse files Browse the repository at this point in the history
Fix client configuration missing logger
  • Loading branch information
leabaertschi committed Dec 10, 2013
2 parents 70e6cb2 + e16ece8 commit ab79295
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private function addClientsSection(ArrayNodeDefinition $rootNode)
array(
'host' => $v['host'],
'port' => $v['port'],
'logger' => $v['logger']
'logger' => isset($v['logger']) ? $v['logger'] : null
)
)
);
Expand All @@ -91,7 +91,7 @@ private function addClientsSection(ArrayNodeDefinition $rootNode)
'servers' => array(
array(
'url' => $v['url'],
'logger' => $v['logger']
'logger' => isset($v['logger']) ? $v['logger'] : null
)
)
);
Expand Down

0 comments on commit ab79295

Please sign in to comment.