From c5d272f5612a0683effe4f4a5a7e26af2b191c9a Mon Sep 17 00:00:00 2001 From: Antaeus Kleinert-Strand <59579659+antklein@users.noreply.github.com> Date: Wed, 7 Dec 2022 12:27:49 -0800 Subject: [PATCH] Fix missing logs from GenMake.py (#195) ## Description * EdkLogger logs were not showing up as part of the build log output. Adding the EdkLogger import to GenMake.py fixes the missing log prints. - [ ] Impacts functionality? - [ ] Impacts security? - [ ] Breaking change? - [ ] Includes tests? - [ ] Includes documentation? ## How This Was Tested * Tested by adding EdkLogger.error and EdkLogger.quiet prints to GenMake.py and verified the output in the platform build log. ## Integration Instructions N/A --- BaseTools/Source/Python/AutoGen/GenMake.py | 1 + 1 file changed, 1 insertion(+) diff --git a/BaseTools/Source/Python/AutoGen/GenMake.py b/BaseTools/Source/Python/AutoGen/GenMake.py index daec9c6d54..33c0eb9336 100755 --- a/BaseTools/Source/Python/AutoGen/GenMake.py +++ b/BaseTools/Source/Python/AutoGen/GenMake.py @@ -14,6 +14,7 @@ import string import re import os.path as path +from Common import EdkLogger # MU_CHANGE from Common.LongFilePathSupport import OpenLongFilePath as open from Common.MultipleWorkspace import MultipleWorkspace as mws from Common.BuildToolError import *