Skip to content

Commit

Permalink
Use constants.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Feb 20, 2017
1 parent e714d28 commit 862c09b
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -28,9 +28,9 @@ class Horde_ActiveSync_Log_Logger_Deprecated extends Horde_Log_Logger
public function __construct($handler = null, Horde_Log_Logger $logger = null)
{
parent::__construct($handler);
$this->addLevel('SERVER', '10');
$this->addLevel('CLIENT', '11');
$this->addLevel('META', '12');
$this->addLevel('SERVER', Horde_ActiveSync_Log_Logger::SERVER);
$this->addLevel('CLIENT', Horde_ActiveSync_Log_Logger::CLIENT);
$this->addLevel('META', Horde_ActiveSync_Log_Logger::META);
$this->_logger = $logger;
}

Expand Down

0 comments on commit 862c09b

Please sign in to comment.