Skip to content

Commit

Permalink
Fix missing logs from GenMake.py (#195)
Browse files Browse the repository at this point in the history
## 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
  • Loading branch information
antklein authored and kenlautner committed May 3, 2023
1 parent e0790fc commit d19943e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions BaseTools/Source/Python/AutoGen/GenMake.py
Expand Up @@ -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 *
Expand Down

0 comments on commit d19943e

Please sign in to comment.