rename echo logger to debug
authorChristian Weiske <cweiske@cweiske.de>
Wed, 25 Jul 2012 16:13:16 +0000 (18:13 +0200)
committerChristian Weiske <cweiske@cweiske.de>
Wed, 25 Jul 2012 16:13:16 +0000 (18:13 +0200)
src/callnotifier/CLI.php
src/callnotifier/Logger/Debug.php [moved from src/callnotifier/Logger/Echo.php with 98% similarity]

index f9a4937742bb192a854792bdff20cccf8929fc24..c8c85736b81aed40d80b4a724c87414a1c889960 100644 (file)
@@ -24,7 +24,7 @@ class CLI
         $this->fillConfig($this->config, $result);
 
         $handler = new MessageHandler($this->config);
-        $handler->addLogger(new Logger_Echo(), '*');
+        $handler->addLogger(new Logger_Debug(), '*');
 
         if ($this->config->replayFile !== null) {
             $sourceClass = 'callnotifier\Source_File';
similarity index 98%
rename from src/callnotifier/Logger/Echo.php
rename to src/callnotifier/Logger/Debug.php
index 9fb0caef1d50e3815b14265c74af54c6216085da..460f91fb8db13fdd327ed8a7f8547ac7fc7b2bb6 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 namespace callnotifier;
 
-class Logger_Echo implements Logger
+class Logger_Debug implements Logger
 {
     public $edss1MsgOnly = false;