Skip to content

Commit 6189b7a

Browse files
tzssangglassoowl
authored andcommitted
fix(lib.rs): remove debug print statement for connect_timeout
Removes a `println!` statement that was used for debugging the `connect_timeout` option. This statement is no longer necessary and was producing unwanted output during runtime.
1 parent 8ea3e3e commit 6189b7a

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ fn request<'lua>(
3737
if opts.contains_key("connect_timeout").is_ok() {
3838
let value = opts.get::<_, LuaValue>("connect_timeout")?;
3939
if !value.is_nil() {
40-
println!("connect_timeout");
4140
let timeout = opts.get::<_, u64>("connect_timeout")?;
4241
builder = builder.connect_timeout(std::time::Duration::from_secs(timeout));
4342
}

0 commit comments

Comments
 (0)