Skip to content

Commit ea871d5

Browse files
committed
fix(lua): print in debug level
1 parent 84f9988 commit ea871d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ffi/lua/ext/a_sync.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ impl LuaUserData for Promise {
8383
pub(crate) fn setup_driver(_: &Lua, (block,): (Option<bool>,)) -> LuaResult<Option<Driver>> {
8484
let (tx, mut rx) = tokio::sync::mpsc::unbounded_channel();
8585
let future = async move {
86-
tracing::info!(" :: driving runtime...");
86+
tracing::debug!(" :: driving runtime...");
8787
tokio::select! {
8888
() = std::future::pending::<()>() => {},
8989
_ = rx.recv() => {},

0 commit comments

Comments
 (0)