rescript-logger icon indicating copy to clipboard operation
rescript-logger copied to clipboard

Logging implementation for ReScript

Results 9 rescript-logger issues
Sort by recently updated
recently updated
newest added

I'm checking in .bs.js files in to version control and i don't want system specific info inside the repo, because it changes as e.g. a college recompiles the files and...

All case which have a prefix won't be logged. In the generated js files the code for logging is missing. It took a while to find out but now i...

The Console API of browsers offer several functions for logs of different severity levels, like error, warn, info, debug. This change uses these functions instead of groupCollapsed for simple logs...

The [Console API](https://developer.mozilla.org/de/docs/Web/API/Console) includes functions for logging on different severity levels, like `error()`, `warn()`, `info()` etc. Using these functions would allow filtering in the browser console.

At least Chrome can group repeating similar log messages. The use of `console.group()` and `console.groupCollapsed()` in BrowserLogger seems to prevent that feature, which is unfortunate especially for often repeating debug...

```reason | A(_) => ... ```

```reason | A | B | C => ... ```

Hi, just upfront I'd like to say I really love this product, thanks for all the work you're putting into it. Recently I started to dockerize an app, and realized...