Skip to content

Commit

Permalink
fix: remove eprintln
Browse files Browse the repository at this point in the history
  • Loading branch information
jreppnow committed Apr 11, 2024
1 parent 656ae5a commit 2f1e8db
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion sea-orm-macros/src/derives/partial_model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ impl DerivePartialModel {
quote!(let #select_ident =
if let Some(prefix) = pre {
let ident = format!("{prefix}{}", #field_name);
eprintln!("{ident}");
sea_orm::SelectColumns::select_column_as(#select_ident, #expr, ident)
} else {
sea_orm::SelectColumns::select_column_as(#select_ident, #expr, #field_name)
Expand Down

0 comments on commit 2f1e8db

Please sign in to comment.