From 8d5a9143bb550966c0b43ee4624c49bfaaa55a8c Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Wed, 27 Sep 2017 11:43:14 -0400 Subject: klippy: Avoid using '%' syntax when calling logging module The logging module can build strings directly from printf syntax - no need to build the string first. Signed-off-by: Kevin O'Connor --- klippy/klippy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'klippy/klippy.py') diff --git a/klippy/klippy.py b/klippy/klippy.py index a40d6da7..ff3b2280 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -159,7 +159,7 @@ class Printer: out.append(toolhead.stats(eventtime)) for m in self.mcus: out.append(m.stats(eventtime)) - logging.info("Stats %.1f: %s" % (eventtime, ' '.join(out))) + logging.info("Stats %.1f: %s", eventtime, ' '.join(out)) return eventtime + 1. def add_object(self, name, obj): self.objects[name] = obj @@ -217,8 +217,8 @@ class Printer: def run(self): systime = time.time() monotime = self.reactor.monotonic() - logging.info("Start printer at %s (%.1f %.1f)" % ( - time.asctime(time.localtime(systime)), systime, monotime)) + logging.info("Start printer at %s (%.1f %.1f)", + time.asctime(time.localtime(systime)), systime, monotime) # Enter main reactor loop try: self.reactor.run() -- cgit v1.2.3-70-g09d2