To make the console output look cleaner one could replace all the `print`s using `paste` ```R if (confirm) print(paste0("Log file set to ", logfile)) ``` with cats ```R if (confirm) cat("Log file set to ", logfile, "\n") ```