fix: revisit log level

This commit is contained in:
Ludo Galabru
2023-06-08 09:02:21 -04:00
parent 48ec25c523
commit 416866123a

View File

@@ -315,7 +315,7 @@ pub fn insert_entry_in_transfers(
"INSERT INTO transfers (block_height) VALUES (?1)",
rusqlite::params![&block_height],
) {
ctx.try_log(|logger| slog::error!(logger, "{}", e.to_string()));
ctx.try_log(|logger| slog::warn!(logger, "{}", e.to_string()));
}
}