MyPAGIApplication::log PHP Method

log() public method

Logs to asterisk console.
public log ( string $msg ) : void
$msg string Message to log.
return void
    public function log($msg)
    {
        $agi = $this->getAgi();
        $this->logger->debug($msg);
        $agi->consoleLog($msg);
    }