Logger::outputInfo PHP Method

outputInfo() public method

public outputInfo ( $caller, $msg, $shift, $nohtml = false )
    public function outputInfo($caller, $msg, $shift = 0, $nohtml = false)
    {
        if ($this->log_output) {
            $this->logLine($this->txtLine("info: {$msg}"), null, 'info');
        }
        if ($this->web_output && !$nohtml) {
            echo $this->html_stdout ? $this->htmlLine("{$msg}", null, 'info') : $this->txtLine("{$msg}", null, 'info');
        }
        return true;
    }