Skip to content

Commit 0fdc4c4

Browse files
committed
Remove dbg! in the macros
1 parent 2e5e273 commit 0fdc4c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlx-macros/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ macro_rules! async_macro (
7070
Ok(ts) => ts.into(),
7171
Err(e) => {
7272
if let Some(parse_err) = e.downcast_ref::<syn::Error>() {
73-
return dbg!(parse_err).to_compile_error().into();
73+
return parse_err.to_compile_error().into();
7474
}
7575

7676
let msg = format!("{:?}", e);

0 commit comments

Comments
 (0)