mirror of https://github.com/Desuuuu/klipper.git
klippy: Increase precision of reported statistics timestamp
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
46b6b4037d
commit
b2885a53cb
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue