This commit is contained in:
dignifiedquire
2019-07-18 23:12:35 +02:00
committed by holger krekel
parent e7f0745010
commit aaa5b820d9
2 changed files with 1 additions and 2 deletions

View File

@@ -486,7 +486,7 @@ impl Imap {
}
info!(
context,
0, "IMAP unsetup_handle step 2 (acquired session.lock)"
0, "IMAP unsetup_handle step 2 (acquiring session.lock)"
);
let session = self.session.lock().unwrap().take();
if session.is_some() {

View File

@@ -57,7 +57,6 @@ impl Sql {
P: IntoIterator,
P::Item: rusqlite::ToSql,
{
eprintln!("SQL EXECUTE: {}", sql);
self.start_stmt(sql.to_string());
self.with_conn(|conn| conn.execute(sql, params).map_err(Into::into))
}