Package 'rlogger'

Title: SAS-Style Logging Utilities for R
Description: Provides SAS-style logging functionality including NOTE, INFO, WARNING, and execution logging.
Authors: Ryan Irvine [aut, cre]
Maintainer: Ryan Irvine <[email protected]>
License: MIT + file LICENSE
Version: 0.1.0
Built: 2026-07-22 18:07:44 UTC
Source: https://github.com/rj-irvine/rlogger

Help Index


ERROR message

Description

ERROR message

Usage

error_log(...)

INFO message

Description

INFO message

Usage

info(...)

NOTE message

Description

NOTE message

Usage

note(...)

WARNING message

Description

WARNING message

Usage

warn(...)

Execute code while logging output

Description

Creates a SAS-style log file.

Usage

with_log(expr, log_file = "analysis.log", append = FALSE, beep = TRUE)

Arguments

expr

Code to execute

log_file

Log filename

append

Append to existing log?

beep

Emit terminal bell on completion?