diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-01-10 12:29:52 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-01-10 12:35:30 -0500 |
commit | b2885a53cb54119cf4efee04ff74cc8ffc972db6 (patch) | |
tree | 8640dc557573631e527cbece8bec10ea04866f4a /klippy | |
parent | 46b6b4037d08c175348304c0dbc24d606ac8ae4e (diff) | |
download | kutter-b2885a53cb54119cf4efee04ff74cc8ffc972db6.tar.gz kutter-b2885a53cb54119cf4efee04ff74cc8ffc972db6.tar.xz kutter-b2885a53cb54119cf4efee04ff74cc8ffc972db6.zip |
klippy: Increase precision of reported statistics timestamp
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy')
-rw-r--r-- | klippy/klippy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py index 92fe6363..517bdf22 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -123,7 +123,7 @@ class Printer: out.append(toolhead.stats(eventtime)) if self.mcu is not None: out.append(self.mcu.stats(eventtime)) - logging.info("Stats %.0f: %s" % (eventtime, ' '.join(out))) + logging.info("Stats %.1f: %s" % (eventtime, ' '.join(out))) return eventtime + 1. def load_config(self): self.fileconfig = ConfigParser.RawConfigParser() |