Skip to content

Commit 1f2c650

Browse files
committed
debug -> release
1 parent aefcf42 commit 1f2c650

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1015,7 +1015,7 @@ impl Server {
10151015
/// Close a prepared statement on the server.
10161016
pub async fn deallocate(&mut self, names: Vec<String>) -> Result<(), Error> {
10171017
for name in &names {
1018-
info!("Deallocating prepared statement `{}`", name);
1018+
debug!("Deallocating prepared statement `{}`", name);
10191019

10201020
let close = Close::new(name);
10211021
let bytes: BytesMut = close.try_into()?;

0 commit comments

Comments
 (0)