From de22e547c57be633cb32d51e93a6efe9c9e90293 Mon Sep 17 00:00:00 2001 From: Peter Surda Date: Thu, 6 Jul 2017 20:06:43 +0200 Subject: [PATCH] Remove buggy log message if prctl is missing - it's not that important that you need to be informed of it, and importing logging may cause cyclic dependencies/other problems --- src/helper_threading.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/helper_threading.py b/src/helper_threading.py index cd51557f..7ea4a12d 100644 --- a/src/helper_threading.py +++ b/src/helper_threading.py @@ -10,7 +10,6 @@ try: threading.Thread.__bootstrap_original__ = threading.Thread._Thread__bootstrap threading.Thread._Thread__bootstrap = _thread_name_hack except ImportError: - log('WARN: prctl module is not installed. You will not be able to see thread names') def set_thread_name(name): pass class StoppableThread(object):