logger icon indicating copy to clipboard operation
logger copied to clipboard

A lightweight, modern and flexible, log4j and futile.logger inspired logging utility for R

Results 41 logger issues
Sort by recently updated
recently updated
newest added

Hi, I started using logger for logging with my shiny app. It works great when logging to the console, but when logging to a file I have some troubles with...

bug

As I was thinking about the recent comment in #26, I wonder if there could be _convenience_ in having `print` and `as.character` S3 methods for the return value to facilitate...

Is there a way to use the ***layout_glue_generator*** and ***formatter_pander***? ```r library("logger") logfile

Occasionally I forget (i.e., when interactive) to set `log_formatter(formatter_json)`. When this happens, any log messages that use named arguments will be blank. For instance, ```r log_info(quux="foo", a=pi) # INFO [2023-11-18...

bug

The async logger fails to work if loading one of the required packages (logger or txtq) produces a warning. In my case, I am running one patch version behind the...

bug

Hello, I was after a severe performance issue in one of my applications, and I ended up at [the above mentioned function](https://github.com/daroczig/logger/blob/cc4b6089e9d32f89b4ce6fba9ac2534b9b98fad9/R/utils.R#L52) in `logger`. Within there, the `gsub` call can...

I work with others, and we don't always have the same formatter set. We found recently that when my code (I tend to use `formatter_json`) is logging with their non-json...

Hello, In my projects I log to console as well as to logfiles. Now I want to use ``` logger::log_warnings() logger::log_errors() ``` to see warnings and errors in my log...

help wanted

I have an algorithm which is divided in various steps, all of them called inside a to_run file. I want to log not only the errors but the traceback too....

help wanted