We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cca2b5 commit e41870aCopy full SHA for e41870a
1 file changed
src/lib.rs
@@ -857,8 +857,12 @@ impl fmt::Debug for Connection {
857
let conn = self.conn.borrow();
858
write!(fmt,
859
"Connection {{ cancel_data: {:?}, notifications: {:?}, transaction_depth: {:?}, \
860
- desynchronized: {:?} }}", conn.cancel_data, conn.notifications.len(),
861
- conn.trans_depth, conn.desynchronized)
+ desynchronized: {:?}, cached_statements: {:?} }}",
+ conn.cancel_data,
862
+ conn.notifications.len(),
863
+ conn.trans_depth,
864
+ conn.desynchronized,
865
+ conn.cached_statements.len())
866
}
867
868
0 commit comments