spdlog-rs icon indicating copy to clipboard operation
spdlog-rs copied to clipboard

Fast and combinable Rust logging crate

Results 22 spdlog-rs issues
Sort by recently updated
recently updated
newest added

## Is your feature request related to a problem? Please describe. Currently, `Sink` has many methods beyond its fundamental semantics. If a downstream crate is going to implement a `Sink`...

enhancement

Currently, I'm working on a separated crate `spdlog-telegram` which writes log records to a Telegram chat, and I found some API is hard (even impossible) to use from a downstream...

Implementation of #70, working in progress. ### Steps - [x] Add `kv::Key` and `kv::Value` - Let's try using [`value-bag`](https://crates.io/crates/value-bag) directly (alias) for value first. - [x] Add `kvs` field to...

Closes #84. This PR adds checks for all tier 1 and tier 2 targets, with changes: - Dependency features are now excluded from CI job 'check', because not all dependencies...

Aim is to allow custom file names and paths on time point rotation, rather than the default behaviour of appending the date/time to the file name given in the base...

As of this issue being opened, we have received 2 reports (#36 #82) of the compile error due to platform-specific code. Rust has a target tier policy, in Rust doc,...

enhancement

This also allow configuring via `RUST_LOG` env var.

### Reasons 1. Using `Atomic` (from `atomic` crate) with types that contain uninitialized bytes is undefined behavior. Prior to `atomic` v0.6, that crate did not restrict this (Amanieu/atomic-rs#23). In spdlog-rs,...

Closes #98. Since the author of `itoa` decided not to support leading zeros (https://github.com/dtolnay/itoa/issues/61#issuecomment-3341925250), we will only experiment with `numtoa` to see if there is any performance improvement and decide...

With the release of [v0.5](https://github.com/SpriteOvO/spdlog-rs/releases/tag/v0.5.0), the downstream crates of _spdlog-rs_ should be easier to implement. I think it's time to start building the ecosystem for _spdlog-rs_. The current principle is...