log_info: Log an informational message

View source: R/core-logging.R

log_infoR Documentation

Log an informational message

Description

Log an informational message

Usage

log_info(..., verbose = TRUE, wrap = TRUE, .envir = parent.frame())

Arguments

...

Character strings to log. Supports glue-style interpolation.

verbose

Logical. Whether to print the message (default TRUE).

wrap

Logical. Whether to wrap long messages (default TRUE).

.envir

Environment for glue interpolation (default: parent frame).

Examples

## Not run: 
log_info("Processing file:", "data.csv")
subject_id <- "001"
log_info("Processing subject {subject_id}")
log_info("Found {nrow(data)} rows", "in dataset")

## End(Not run)


eyeris documentation built on June 19, 2026, 9:08 a.m.