We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84f9988 commit ea871d5Copy full SHA for ea871d5
1 file changed
src/ffi/lua/ext/a_sync.rs
@@ -83,7 +83,7 @@ impl LuaUserData for Promise {
83
pub(crate) fn setup_driver(_: &Lua, (block,): (Option<bool>,)) -> LuaResult<Option<Driver>> {
84
let (tx, mut rx) = tokio::sync::mpsc::unbounded_channel();
85
let future = async move {
86
- tracing::info!(" :: driving runtime...");
+ tracing::debug!(" :: driving runtime...");
87
tokio::select! {
88
() = std::future::pending::<()>() => {},
89
_ = rx.recv() => {},
0 commit comments