From 47a1c6a2e5dced473549c3e1d7b96eee4355af39 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Mon, 29 May 2023 09:57:03 -0600 Subject: [PATCH] logging_handler.py: Add additional logging info --- resources/logging_handler.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/resources/logging_handler.py b/resources/logging_handler.py index 3dda566a2..8a503350c 100644 --- a/resources/logging_handler.py +++ b/resources/logging_handler.py @@ -259,6 +259,10 @@ class InitializeLoggingSupport: """ Display debug properties, primarily after main thread crash """ + logging.info("Host Properties:") + logging.info(f" XNU Version: {self.constants.detected_os}.{self.constants.detected_os_minor}") + logging.info(f" XNU Build: {self.constants.detected_os_build}") + logging.info(f" macOS Version: {self.constants.detected_os_version}") logging.info("Debug Properties:") logging.info(f" Effective User ID: {os.geteuid()}") logging.info(f" Effective Group ID: {os.getegid()}")