From a4b81a256c142eaa6f475fbbdf3c7e873e434471 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 8 Nov 2018 18:45:40 -0800 Subject: [PATCH] remove debug output --- Cargo.toml | 2 +- src/server/server.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 82883e23..f7c0506f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-net" -version = "0.2.0" +version = "0.2.1" authors = ["Nikolay Kim "] description = "Actix net - framework for the compisible network services for Rust (experimental)" readme = "README.md" diff --git a/src/server/server.rs b/src/server/server.rs index 874253f6..44842575 100644 --- a/src/server/server.rs +++ b/src/server/server.rs @@ -337,7 +337,6 @@ impl Handler for Server { type Result = Response<(), ()>; fn handle(&mut self, msg: StopServer, ctx: &mut Context) -> Self::Result { - println!("STOP command"); // stop accept thread self.accept.send(Command::Stop);