From bc822ccd5f96167c6d3355dd4ab4abc8cff09428 Mon Sep 17 00:00:00 2001 From: Craig Warren Date: Sat, 27 Mar 2021 15:34:07 +0000 Subject: [PATCH] Added logging. --- gprMax/utilities/host_info.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gprMax/utilities/host_info.py b/gprMax/utilities/host_info.py index a8d6033b..b2034651 100644 --- a/gprMax/utilities/host_info.py +++ b/gprMax/utilities/host_info.py @@ -16,6 +16,7 @@ # You should have received a copy of the GNU General Public License # along with gprMax. If not, see . +import logging import os import platform import re @@ -27,6 +28,8 @@ import psutil from .utilities import human_size +logger = logging.getLogger(__name__) + def get_host_info(): """Get information about the machine, CPU, RAM, and OS.