From 1eb89b83751b14267d935aae0d82af565c2bc9d1 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sat, 25 May 2019 03:16:53 -0700 Subject: [PATCH] remove debug prints --- actix-http/CHANGES.md | 2 +- src/app_service.rs | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index b3d8604c0..041596c31 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [0.2.1] - 2019-05-2 +## [0.2.1] - 2019-05-25 ### Fixed diff --git a/src/app_service.rs b/src/app_service.rs index 88e97de1e..5a9731bf2 100644 --- a/src/app_service.rs +++ b/src/app_service.rs @@ -239,7 +239,6 @@ where { fn drop(&mut self) { self.pool.clear(); - println!("DROP: APP-INIT-ENTRY"); } } @@ -436,7 +435,6 @@ mod tests { impl Drop for DropData { fn drop(&mut self) { self.0.store(true, Ordering::Relaxed); - println!("Dropping!"); } }