Swoole\Controller::trace PHP Method

trace() protected method

跟踪信息
protected trace ( $title, $value = '' )
$title
$value
    protected function trace($title, $value = '')
    {
        if (is_array($title)) {
            $this->traceInfo = array_merge($this->traceInfo, $title);
        } else {
            $this->traceInfo[$title] = $value;
        }
    }