logging_handler.py: Set StreamHandler to Standard Out

This commit is contained in:
Mykola Grymalyuk
2023-02-05 16:31:49 -07:00
parent b97a3bc4d8
commit b141452005
2 changed files with 2 additions and 2 deletions

View File

@@ -666,7 +666,7 @@ class PatchSysVolume:
if Path(self.constants.payload_local_binaries_root_path_zip).exists():
logging.info("- Local PatcherSupportPkg resources available, unzipping...")
print("- Unzipping binaries...")
logging.info("- Unzipping binaries...")
utilities.process_status(subprocess.run(["ditto", "-V", "-x", "-k", "--sequesterRsrc", "--rsrc", self.constants.payload_local_binaries_root_path_zip, self.constants.payload_path], stdout=subprocess.PIPE, stderr=subprocess.STDOUT))
return True