Learn R Programming

courieR (version 0.2.2)

parse_inspection_log: Parse R CMD check log

Description

Parse R CMD check log

Usage

parse_inspection_log(log_path)

Value

data.table

Arguments

log_path

Path to the log file

Examples

Run this code
tmp <- tempfile(fileext = ".log")
writeLines(c(
  "* checking examples ... WARNING",
  "  An example result is marked with \\donttest."
), tmp)
parse_inspection_log(tmp)
file.remove(tmp)

Run the code above in your browser using DataLab