ryapric / loggit

Modern Logging for the R Ecosystem
Other
37 stars 2 forks source link

Clean user communication #25

Open MEO265 opened 11 months ago

MEO265 commented 11 months ago

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")