Learn R Programming

ptspotter (version 1.0.2)

log_file_ops: log_file_ops

Description

Create the necessary file infrastructure to efficiently start logging with "log4r".

Usage

log_file_ops(dir_path = NULL, logfile_nm = "logfile")

Value

Creates log directory and log file if required. Calls log_enable() to assign necessary logging objects in specified scope.

Arguments

dir_path

The name of the folder in which the logfile should be saved. Creates the folder if required.

logfile_nm

Provide a name for the logfile. Do not include suffix. Defaults to "logfile".

Examples

Run this code

.old_wd <- setwd(tempdir())

log_file_ops(dir_path = "logs")

unlink("logs", recursive = TRUE)

setwd(.old_wd)

Run the code above in your browser using DataLab