debug -> release

This commit is contained in:
Lev Kokotov
2023-08-01 17:47:34 -07:00
parent aefcf4281c
commit 1f2c6507f7

View File

@@ -1015,7 +1015,7 @@ impl Server {
/// Close a prepared statement on the server.
pub async fn deallocate(&mut self, names: Vec<String>) -> Result<(), Error> {
for name in &names {
info!("Deallocating prepared statement `{}`", name);
debug!("Deallocating prepared statement `{}`", name);
let close = Close::new(name);
let bytes: BytesMut = close.try_into()?;