loggit
loggit copied to clipboard
Clean user communication
trafficstars
To make the console output look cleaner one could replace all the prints using paste
if (confirm) print(paste0("Log file set to ", logfile))
with cats
if (confirm) cat("Log file set to ", logfile, "\n")