remove debug prints

This commit is contained in:
Reid 2023-08-30 13:34:47 -07:00
parent 93579922d6
commit 3cbf22cb83
Signed by: reidlab
GPG key ID: 6C9EAA3364F962C8

View file

@ -88,8 +88,6 @@ pub fn get_users(input: Form<FormGetUsers>) -> status::Custom<&'static str> {
let response = if results.is_empty() {
String::from("-1")
} else {
println!("{:?}", results);
println!("{:?}", vec![results.join("|"), format!("{}:{}:10", amount, input.page * 10)].join("#"));
vec![results.join("|"), format!("{}:{}:10", amount, input.page * 10)].join("#")
};