rlogging is an R package providing ready-to-use functions for basic logging in R.
It takes inspiration from the widely-used Log4j Java-based logging utility.
Installation
You can install latest development version from GitHub (requires devtools package):
if (!require("devtools")) {
install.packages("devtools")
}
devtools::install_github(
repo = "alebarberis/rlogging",
dependencies = TRUE,
build_vignettes = FALSE
)Getting started
If you are just getting started with rlogging, we recommend looking at the Getting Started section of the site.