loggr
loggr copied to clipboard
Easy and flexible logging for R
Hi, nice package. Ive been using it with my shiny application. Was wondering if there is a way to ensure that the following lines are not saved in my log...
We should settle on features that we focus on for a first release; something like - logging of events raised with `message`, `warning`, `stop`, without need for the user to...
I think this fixes the truncated messages issue (https://github.com/smbache/loggr/issues/33). Maybe double-check that my tossing of the last three entries in `args` doesn't have any unwanted effects that I'm not considering?
I'm looking at using loggr in a scenario where I'm creating new processes using `system2(command = "Rscript" , args = c('--vanilla','my_script.R'), stdout = stdout_file, stderr = stderr_file, wait = FALSE)`,...
Maybe there is a greater reason for this that I am blind to, but I think it's a bit odd that all the other functions in the package are prefixed...
Hi I can't figure out how to do this, maybe this needs a pull request. Basically what I mean to do is to source the following R script: ```library(loggr) log_file("testloggr.log",...
Hi there, Love the simple logging utility for R. Say, I'm currently getting a weird error--weird because I can see loggr create the log file, and I can see it...
I'm seeing this error show up in my logs, but it's not generated by anything I'm doing. As far as I can tell there's no R package out there called...
I like the simplicity of this package, and would like to use it just to add timestamps to my messages and warnings. However, it seems that the timestamped messages appear...
The help file for `log_file` says: ``` #' @param overwrite logical: whether or not to overwrite the file at #' \code{file_name} if it already exists. Set to FALSE by default....