Pimcore\Db\Profiler::updateMessageLabel PHP Method

updateMessageLabel() protected method

Update the label of the message holding the profile info.
protected updateMessageLabel ( ) : void
return void
    protected function updateMessageLabel()
    {
        if (!$this->_message) {
            return;
        }
        $this->_message->setLabel(str_replace(['%label%', '%totalCount%', '%totalDuration%'], [$this->_label, $this->getTotalNumQueries(), (string) round($this->_totalElapsedTime, 5)], $this->_label_template));
    }