X-Git-Url: https://git.cweiske.de/auerswald-callnotifier.git/blobdiff_plain/4bc203883b0b35be4892768679340effd1348a2f..e839909cbd2ac51620fa1607d92b8b6d5a54f837:/src/callnotifier/Logger/CallEcho.php diff --git a/src/callnotifier/Logger/CallEcho.php b/src/callnotifier/Logger/CallEcho.php index 825bc24..ad13406 100644 --- a/src/callnotifier/Logger/CallEcho.php +++ b/src/callnotifier/Logger/CallEcho.php @@ -1,7 +1,7 @@ addUnsetVars($call); echo 'Starting ' . $this->getTypeName($call) - . ' call from ' . $call->from - . ' to ' . $call->to . "\n"; + . ' call from ' . trim($this->getNumberString($call, 'from')) + . ' to ' . trim($this->getNumberString($call, 'to')) . "\n"; } protected function displayFinished(CallMonitor_Call $call) { + $this->addUnsetVars($call); echo 'Finished ' . $this->getTypeName($call) - . ' call from ' . $call->from - . ' to ' . $call->to + . ' call from ' . trim($this->getNumberString($call, 'from')) + . ' to ' . trim($this->getNumberString($call, 'to')) . ', length ' . date('H:i:s', $call->end - $call->start - 3600) . "\n"; }