async-log icon indicating copy to clipboard operation
async-log copied to clipboard

Async tracing capabilities for the log crate

Results 5 async-log issues
Sort by recently updated
recently updated
newest added

```rust #[no_mangle] pub fn async_log_capture_caller() { panic!("wat"); } fn main() { std::env::set_var("RUST_BACKTRACE", "1"); async_log::Logger::wrap(femme::pretty::Logger::new(), || 12) .start(log::LevelFilter::Trace) .unwrap(); log::info!("Hello, world!"); async_log_capture_caller(); } ``` ```console > cargo add femme@1 async-log@2 [email protected]...

Signed-off-by: koushiro * Update `proc-maroc2`, `syn` and `quote` to v1.0 * Make `async-log-attributes` to be optional (close #6)

I have a system that only uses regular threads, but no Futures, so I was wondering if there could be an option to disable logging `task_id`s, as this is still...

syn/quote take a lot of time to build. we should have a feature to turn them off (while enabled by default)

Now that experimental key-value logging has landed in `log` (https://github.com/rust-lang-nursery/log/issues/328), we should look into using it for `async-log`. This is currently blocked on having a way to actually _log_ key-value...