Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
matias-gonz committed Jul 26, 2024
1 parent 73a2ce4 commit cf633e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zk_toolbox/crates/zk_inception/src/commands/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ impl ConfigDiff {

if is_warning {
logger::warn(msg);
logger::warn(&logger::object_to_string(&self.new_fields));
logger::warn(logger::object_to_string(&self.new_fields));
} else {
logger::info(msg);
logger::info(&logger::object_to_string(&self.new_fields));
logger::info(logger::object_to_string(&self.new_fields));
}
}
}
Expand Down

0 comments on commit cf633e7

Please sign in to comment.