1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 21:51:06 +01:00

remove debug output

This commit is contained in:
Nikolay Kim 2018-11-08 18:45:40 -08:00
parent 38235c14bb
commit a4b81a256c
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "actix-net"
version = "0.2.0"
version = "0.2.1"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix net - framework for the compisible network services for Rust (experimental)"
readme = "README.md"

View File

@ -337,7 +337,6 @@ impl Handler<StopServer> for Server {
type Result = Response<(), ()>;
fn handle(&mut self, msg: StopServer, ctx: &mut Context<Self>) -> Self::Result {
println!("STOP command");
// stop accept thread
self.accept.send(Command::Stop);