loggit icon indicating copy to clipboard operation
loggit copied to clipboard

Modern Logging for the R Ecosystem

Results 15 loggit issues
Sort by recently updated
recently updated
newest added

Hello, I don't know which branch would be the right one for the PR, the develop seems suitable to me. Closes #26. I saw that you already fixed it (in...

Messages that contain an `:` ​​are not displayed correctly in the log but are cut off ``` > loggit::message("This won't: work") {"timestamp": "2023-12-01T16:17:12+0100", "log_lvl": "INFO", "log_msg": "This won't: work"} This...

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

Since `echo` is `TRUE` by default, the console is easily spammed with no new information, so I would recommend changing this. This would also have the nice side effect that...

Even though this repo has been inactive for a long time, I hope that I can still help to improve a few things here. Since loggits `stop`, `warning` and `message`...