Airship\Engine\LedgerStorage\DBStore::store PHP Method

store() public method

Store a log message -- used by Ledger
public store ( string $level, string $message, string $context ) : mixed
$level string
$message string
$context string (JSON encoded)
return mixed
    public function store(string $level, string $message, string $context)
    {
        return $this->db->insert($this->table, [$this->columns['level'] => $level, $this->columns['message'] => $message, $this->columns['context'] => $context]);
    }