Skip to content

Commit

Permalink
feat: added debug code towards #143
Browse files Browse the repository at this point in the history
  • Loading branch information
lilopkins committed Apr 30, 2024
1 parent 4e7e847 commit b5ddad6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions testangel/src/ui/flows/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -708,6 +708,8 @@ impl Component for FlowsModel {
}
}

log::debug!("After cut, flow is: {flow:?}");

self.needs_saving = true;
}
FlowInputs::PasteStep(idx, config) => {
Expand All @@ -734,6 +736,8 @@ impl Component for FlowsModel {
}
}

log::debug!("After paste, flow is: {flow:?}");

self.needs_saving = true;

// Trigger UI steps refresh
Expand Down

0 comments on commit b5ddad6

Please sign in to comment.