Skip to content

Commit 892a6f8

Browse files
committed
Remove unnecessary println in examples
1 parent 7d537a8 commit 892a6f8

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

examples/server.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ fn main() -> Result<(), async_h1::Exception> {
1010
let mut incoming = listener.incoming();
1111

1212
while let Some(stream) = incoming.next().await {
13-
println!("new TCP stream...");
1413
task::spawn(async {
1514
let stream = stream?;
1615
let (reader, writer) = &mut (&stream, &stream);

0 commit comments

Comments
 (0)