R/read_log.R

Defines functions read_log

Documented in read_log

#' Read common/combined log file into a tibble
#'
#' This is a fairly standard format for log files - it uses both quotes
#' and square brackets for quoting, and there may be literal quotes embedded
#' in a quoted string. The dash, "-", is used for missing values.
#'
#' @inheritParams read_delim
#' @export
#' @examples
#' read_log(readr_example("example.log"))
read_log <- function(file, col_names = FALSE, col_types = NULL,
                     trim_ws = TRUE,
                     skip = 0, n_max = Inf,
                     show_col_types = should_show_types(),
                     progress = show_progress()) {
  tokenizer <- tokenizer_log(trim_ws = trim_ws)
  read_delimited(file, tokenizer,
    col_names = col_names, col_types = col_types,
    skip = skip, n_max = n_max, progress = progress,
    show_col_types = show_col_types
  )
}

Try the readr package in your browser

Any scripts or data that you put into this service are public.

readr documentation built on Feb. 16, 2023, 6:04 p.m.