remove debug prints

This commit is contained in:
Dmitry Belyaev 2023-08-08 16:52:30 +03:00
parent 2c3950ccfc
commit daf41625ff
Signed by: b4tman
GPG Key ID: 41A00BF15EA7E5F3
1 changed files with 1 additions and 6 deletions

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() {