diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-04-14 10:43:14 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-04-14 10:43:14 -0400 |
commit | 2cb935c3006d919e1796644e51caedb3e46f6a3b (patch) | |
tree | 25112ef3c21eb4d7900f5736a4238f951c9ec55f /klippy/mcu.py | |
parent | b9623c112833aa94bf82921187f135357a9f3cd0 (diff) | |
download | kutter-2cb935c3006d919e1796644e51caedb3e46f6a3b.tar.gz kutter-2cb935c3006d919e1796644e51caedb3e46f6a3b.tar.xz kutter-2cb935c3006d919e1796644e51caedb3e46f6a3b.zip |
mcu: No need to log mcu_stats debugging
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/mcu.py')
-rw-r--r-- | klippy/mcu.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/klippy/mcu.py b/klippy/mcu.py index c3fe707b..87aa59e6 100644 --- a/klippy/mcu.py +++ b/klippy/mcu.py @@ -407,7 +407,6 @@ class MCU: self._mcu_tick_avg = 0. self._mcu_tick_stddev = 0. def handle_mcu_stats(self, params): - logging.debug("mcu stats: %s" % (params,)) count = params['count'] tick_sum = params['sum'] c = 1.0 / (count * self._mcu_freq) |