Elgg\Logger::dump PHP Method

dump() public method

Dump data to log or screen
public dump ( mixed $data, boolean $display = true ) : void
$data mixed The data to log
$display boolean Whether to include this in the HTML page
return void
    public function dump($data, $display = true)
    {
        $this->process($data, $display, self::ERROR);
    }