Skip to content

Commit

Permalink
Fix setting logger.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jun 12, 2015
1 parent 98b56ab commit 3672c8d
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -231,7 +231,9 @@ public function synchronize($params = array())
{
$this->_logger = !empty($this->_logger)
? $this->_logger
: new Horde_Support_Stub();
: (!empty($params['logger'])
? $params['logger']
: new Horde_Support_Stub());

// For logging
$user = $this->getAuth();
Expand Down

0 comments on commit 3672c8d

Please sign in to comment.