get_run_log: Retrieve log entries for a provided run

Description Usage Arguments Value See Also Examples

View source: R/get_run_log.R

Description

Retrieve log entries for a provided run

Usage

1

Arguments

connection

A connection object, as retrieved from connect_scrapebot().

run_uid

Numeric UID or a vector of numeric UIDs of the run to find log entries for.

Value

A tibble listing all log entries including a timestamp, its type (one of: info, warning, error), and the message itself.

See Also

get_runs(), get_run_data()

Examples

1
2
3
4
5
6
7
8
## Not run: 

connection <- connect('my_db on localhost')
get_run_log(connection, 13)
get_run_log(connection, c(13, 99))
disconnect(connection)

## End(Not run)

MarHai/ScrapeBotR documentation built on March 10, 2021, 10:10 a.m.