diff --git a/ntex-rt/src/lib.rs b/ntex-rt/src/lib.rs index a4cbf1e2..f5b50196 100644 --- a/ntex-rt/src/lib.rs +++ b/ntex-rt/src/lib.rs @@ -132,7 +132,10 @@ mod compio { /// Runs the provided future, blocking the current thread until the future /// completes. pub fn block_on>(fut: F) { - log::debug!("Create compio runtime and block on future"); + log::info!( + "Starting compio runtime, driver {:?}", + comp_io::driver::DriverType::current() + ); let rt = Runtime::new().unwrap(); rt.block_on(fut); } diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index e00c3a94..a38680ff 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex" -version = "2.7.0" +version = "2.6.0" authors = ["ntex contributors "] description = "Framework for composable network services" readme = "README.md"