Skip to content

Commit

Permalink
remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
magnetophon committed Nov 21, 2024
1 parent 20b886e commit f3d5dfa
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1448,15 +1448,13 @@ impl Del2 {
delay_tap
.amp_envelope
.set_target(self.params.sample_rate.load(Ordering::SeqCst), 0.0);
nih_log!("set target 0.0");
delay_tap.releasing = true;
} else {
delay_tap.amp_envelope.style =
SmoothingStyle::Linear(self.params.global.attack_ms.value());
delay_tap
.amp_envelope
.set_target(self.params.sample_rate.load(Ordering::SeqCst), 1.0);
nih_log!("set target 1.0");
delay_tap.releasing = false;
}
delay_tap.is_muted = muted;
Expand Down

0 comments on commit f3d5dfa

Please sign in to comment.