Xuanwo opened a new issue, #2617: URL: https://github.com/apache/incubator-opendal/issues/2617
https://github.com/tokio-rs/async-backtrace Efficient, logical 'stack' traces of async functions. ```rust #[async_backtrace::framed] async fn pending() { std::future::pending::<()>().await } #[async_backtrace::framed] async fn foo() { bar().await; } #[async_backtrace::framed] async fn bar() { futures::join!(fiz(), buz()); } #[async_backtrace::framed] async fn fiz() { tokio::task::yield_now().await; } #[async_backtrace::framed] async fn buz() { println!("{}", baz().await); } #[async_backtrace::framed] async fn baz() -> String { async_backtrace::taskdump_tree(true) } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
