Skip to content

Commit

Permalink
debug -> release
Browse files Browse the repository at this point in the history
  • Loading branch information
levkk committed Aug 2, 2023
1 parent aefcf42 commit 1f2c650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()?;
Expand Down

0 comments on commit 1f2c650

Please sign in to comment.