loggit icon indicating copy to clipboard operation
loggit copied to clipboard

Clean user communication

Open MEO265 opened this issue 1 year ago • 0 comments
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")

MEO265 avatar Nov 30 '23 19:11 MEO265