Changeset 53425 in vbox for trunk/src/VBox/Devices/EFI/Firmware
- Timestamp:
- Dec 2, 2014 1:53:48 PM (10 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/GenFds.py
r48674 r53425 469 469 FvSpaceInfoList.append((FvName, Total, Used, Free)) 470 470 471 GenFdsGlobalVariable. InfLogger('\nFV Space Information')471 GenFdsGlobalVariable.QuietLogger('\nFV Space Information') 472 472 for FvSpaceInfo in FvSpaceInfoList: 473 473 Name = FvSpaceInfo[0] … … 480 480 Percentage = str((UsedSizeValue+0.0)/TotalSizeValue)[0:4].lstrip('0.') 481 481 482 GenFdsGlobalVariable. InfLogger(Name + ' ' + '[' + Percentage + '%Full] ' + str(TotalSizeValue) + ' total, ' + str(UsedSizeValue) + ' used, ' + str(FreeSizeValue) + ' free')482 GenFdsGlobalVariable.QuietLogger(Name + ' ' + '[' + Percentage + '%Full] ' + str(TotalSizeValue) + ' total, ' + str(UsedSizeValue) + ' used, ' + str(FreeSizeValue) + ' free') 483 483 484 484 ## PreprocessImage() … … 523 523 if GuidXRefFile.getvalue(): 524 524 SaveFileOnChange(GuidXRefFileName, GuidXRefFile.getvalue(), False) 525 GenFdsGlobalVariable. InfLogger("\nGUID cross reference file can be found at %s" % GuidXRefFileName)525 GenFdsGlobalVariable.QuietLogger("\nGUID cross reference file can be found at %s" % GuidXRefFileName) 526 526 elif os.path.exists(GuidXRefFileName): 527 527 os.remove(GuidXRefFileName) -
trunk/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/GenFdsGlobalVariable.py
r48674 r53425 611 611 EdkLogger.info(msg) 612 612 613 def QuietLogger (msg): 614 EdkLogger.quiet(msg) 615 613 616 def ErrorLogger (msg, File = None, Line = None, ExtraData = None): 614 617 EdkLogger.error('GenFds', GENFDS_ERROR, msg, File, Line, ExtraData) … … 703 706 InfLogger = staticmethod(InfLogger) 704 707 ErrorLogger = staticmethod(ErrorLogger) 708 QuietLogger = staticmethod(QuietLogger) 705 709 DebugLogger = staticmethod(DebugLogger) 706 710 MacroExtend = staticmethod (MacroExtend)
Note:
See TracChangeset
for help on using the changeset viewer.