From 6fd53280427fc262bf26df8d5416daf1f472e249 Mon Sep 17 00:00:00 2001 From: Astro Date: Thu, 1 Oct 2020 02:09:43 +0200 Subject: [PATCH] channels: rm debug output --- src/channels.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/channels.rs b/src/channels.rs index d1bb531..bc5d99f 100644 --- a/src/channels.rs +++ b/src/channels.rs @@ -77,7 +77,6 @@ impl Channels { state.update(instant, data); match state.update_pid() { Some(pid_output) if state.pid_engaged => { - log::info!("PID: {:.3} A", pid_output); // Forward PID output to i_set DAC self.set_i(channel.into(), ElectricCurrent::new::(pid_output)); self.power_up(channel);