Remove unnescessary println

This commit is contained in:
Marko Korhonen 2020-03-30 14:43:17 +03:00
parent d2dd00c8d4
commit 91e693d53a
No known key found for this signature in database
GPG key ID: 911B85FBC6003FE5

View file

@ -17,7 +17,6 @@ async fn add_user(
form: web::Json<models::NewUser>,
) -> Result<HttpResponse, Error> {
let conn = pool.get().expect("Pool did not give a connection");
println!("Hi");
// use web::block to offload blocking Diesel code without blocking server thread
let user =