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/util.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'klippy/util.py') diff --git a/klippy/util.py b/klippy/util.py index 6c9cad6b..4a528439 100644 --- a/klippy/util.py +++ b/klippy/util.py @@ -43,8 +43,8 @@ def get_cpu_info(): data = f.read() f.close() except OSError: - logging.debug("Exception on read /proc/cpuinfo: %s" % ( - traceback.format_exc(),)) + logging.debug("Exception on read /proc/cpuinfo: %s", + traceback.format_exc()) return "?" lines = [l.split(':', 1) for l in data.split('\n')] lines = [(l[0].strip(), l[1].strip()) for l in lines if len(l) == 2] @@ -64,6 +64,6 @@ def get_git_version(): output = process.communicate()[0] retcode = process.poll() except OSError: - logging.debug("Exception on run: %s" % (traceback.format_exc(),)) + logging.debug("Exception on run: %s", traceback.format_exc()) return "?" return output.strip() -- cgit v1.2.3-70-g09d2