remove println

This commit is contained in:
Hocuri
2020-06-11 11:03:52 +02:00
parent 20ad98d168
commit 7997e7dde4
2 changed files with 0 additions and 2 deletions

View File

@@ -2459,7 +2459,6 @@ mod tests {
.await
.unwrap();
println!("Loading msg {}", msg_id);
let msg = Message::load_from_db(&t.ctx, msg_id).await.unwrap();
assert_eq!(msg.state, MessageState::OutFailed);

View File

@@ -1281,7 +1281,6 @@ pub async fn set_msg_failed(context: &Context, msg_id: MsgId, error: Option<impl
}),
Err(e) => {
error!(context, "{:?}", e);
println!("{:?}", e)
}
}
}