From 786701593eeb9c49276f2ddccb914c6a800f6789 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] BaseTools: GenMake: Fix missing logs from GenMake.py (#195) * 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? * Tested by adding EdkLogger.error and EdkLogger.quiet prints to GenMake.py and verified the output in the platform build log. 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 95515b2b20..1087d38c1a 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 *