Jyxo\FirePhp::log PHP Method

log() public static method

Sends a log message.
public static log ( mixed $message, string $label = '', string $type = self::LOG ) : boolean
$message mixed Message text
$label string Message label
$type string Message type
return boolean
    public static function log($message, string $label = '', string $type = self::LOG) : bool
    {
        $output = [['Type' => $type, 'Label' => $label], self::encodeVariable($message)];
        return self::send($output);
    }