1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 01:39:33 +00:00

remove debug logs

This commit is contained in:
Rob Ede 2022-01-20 01:30:05 +00:00
parent f2e736719a
commit 68ad81f989
No known key found for this signature in database
GPG key ID: 97C636207D3EF933
2 changed files with 2 additions and 10 deletions

View file

@ -102,14 +102,8 @@ impl AppService {
InitError = (),
> + 'static,
{
dbg!(rdef.pattern());
self.services.push((
rdef,
boxed::factory(factory.into_factory()),
guards,
dbg!(nested),
));
self.services
.push((rdef, boxed::factory(factory.into_factory()), guards, nested));
}
}

View file

@ -700,7 +700,6 @@ mod tests {
Ok(())
};
let s = format!("{}", FormatDisplay(&render));
println!("{}", s);
assert!(s.contains("/test/route/yeah"));
}
@ -794,7 +793,6 @@ mod tests {
Ok(())
};
let s = format!("{}", FormatDisplay(&render));
println!("{}", s);
assert!(s.contains("192.0.2.60"));
}