Crates.io | futures-poll-log |
lib.rs | futures-poll-log |
version | 1.0.1 |
source | src |
created_at | 2017-05-23 18:37:50.14943 |
updated_at | 2017-05-23 18:52:29.709631 |
description | A crate to trace poll calls on futures |
homepage | https://github.com/skade/futures-poll-log |
repository | |
max_upload_size | |
id | 15730 |
size | 6,302 |
This crate adds a "inspect" method to all futures, allowing you to tag futures with a name and see all poll calls to them logged.
Setup a logger through the log
crate. Then use the extension trait:
extern crate futures_poll_log;
use futures_poll_log::LoggingExt;
let _: Result<i32, _> =futures::future::ok(3)
.inspect("immeditate future")
.map(|i| {
i*2
})
.inspect("mapped future")
.and_then(|_| {
Err("ooops".to_string())
})
.inspect("failing future")
.wait();
This will log:
DEBUG - Polling future `failing future'
DEBUG - Polling future `mapped future'
DEBUG - Polling future `immeditate future'
DEBUG - Future `immeditate future' polled: Ok(Ready(3))
DEBUG - Future `mapped future' polled: Ok(Ready(6))
DEBUG - Future `failing future' polled: Err("ooops")
Note that it logs the Async state.
The log target is futures_log
.
Building the crate with the feature "silence" makes the effect completely vanish, including the intermediate futures. The library also stops binding to log
lib.
This allows you to keep the tagging around for future debugging sessions.
MIT