Jyxo\FirePhp::trace PHP Метод

trace() публичный статический Метод

Sends a trace.
public static trace ( string $message, string $file, integer $line, array $trace ) : boolean
$message string Message text
$file string File name
$line integer File line
$trace array Trace
Результат boolean
    public static function trace(string $message, string $file, int $line, array $trace) : bool
    {
        $output = [['Type' => self::TRACE, 'Label' => null], ['Message' => Charset::fixUtf($message), 'File' => $file, 'Line' => $line, 'Trace' => self::replaceVariable($trace)]];
        return self::send($output);
    }