diff options
Diffstat (limited to 'sandboxlib/utils.py')
-rw-r--r-- | sandboxlib/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sandboxlib/utils.py b/sandboxlib/utils.py index b3ec867..e9b049a 100644 --- a/sandboxlib/utils.py +++ b/sandboxlib/utils.py @@ -42,7 +42,8 @@ def find_program(program_name): argv = ['which', program_name] program_path = subprocess.check_output(argv).strip() except subprocess.CalledProcessError as e: - logging.debug("Error searching for %s: %s", program_name, e) + log = logging.getLogger('sandboxlib') + log.debug("Error searching for %s: %s", program_name, e) program_path = None if program_path is None: |