diff --git a/postgres-types/src/jiff_02.rs b/postgres-types/src/jiff_02.rs index 1db8e7239..a736dd3eb 100644 --- a/postgres-types/src/jiff_02.rs +++ b/postgres-types/src/jiff_02.rs @@ -51,7 +51,9 @@ impl<'a> FromSql<'a> for DateTime { impl ToSql for DateTime { fn to_sql(&self, _: &Type, w: &mut BytesMut) -> Result> { - let v = dbg!(dbg!(self.since(base())).and_then(|s| s.round(round_us().relative(base())))) + let v = self + .since(base()) + .and_then(|s| s.round(round_us().relative(base()))) .map_err(transmit_err)? .get_microseconds(); types::timestamp_to_sql(v, w);