remove debug prints

This commit is contained in:
2023-08-08 16:52:30 +03:00
parent 2c3950ccfc
commit daf41625ff

View File

@@ -158,14 +158,9 @@ async fn read_from_db(id: u32) -> Option<Question> {
id as usize - 1
};
println!("{}", &index); // DEBUG
match reader.get(index).await {
Ok(question) => Some(question),
Err(e) => {
println!("{:#?}", e); // DEBUG
None
}
Err(_) => None
}
}
async fn write_db() {