We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aefcf42 commit 1f2c650Copy full SHA for 1f2c650
src/server.rs
@@ -1015,7 +1015,7 @@ impl Server {
1015
/// Close a prepared statement on the server.
1016
pub async fn deallocate(&mut self, names: Vec<String>) -> Result<(), Error> {
1017
for name in &names {
1018
- info!("Deallocating prepared statement `{}`", name);
+ debug!("Deallocating prepared statement `{}`", name);
1019
1020
let close = Close::new(name);
1021
let bytes: BytesMut = close.try_into()?;
0 commit comments