powered by
Create the necessary file infrastructure to efficiently start logging with "log4r".
log_file_ops(dir_path = NULL, logfile_nm = "logfile")
Creates log directory and log file if required. Calls log_enable() to assign necessary logging objects in specified scope.
The name of the folder in which the logfile should be saved. Creates the folder if required.
Provide a name for the logfile. Do not include suffix. Defaults to "logfile".
.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