mirror of
https://github.com/actix/actix-web.git
synced 2024-11-26 03:21:08 +00:00
remove debug logs
This commit is contained in:
parent
f2e736719a
commit
68ad81f989
2 changed files with 2 additions and 10 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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"));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue