MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / VerboseMsg

Function VerboseMsg

BaseTools/Source/C/Common/EfiUtilityMsgs.c:660–691  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

658}
659
660VOID
661VerboseMsg (
662 CHAR8 *MsgFmt,
663 ...
664 )
665/*++
666
667Routine Description:
668 Print a verbose level message.
669
670Arguments:
671 MsgFmt - the format string for the message. Can contain formatting
672 controls for use with varargs.
673 List - the variable list.
674
675Returns:
676 NA
677
678--*/
679{
680 va_list List;
681 //
682 // If the debug level is less than current print level, then do nothing.
683 //
684 if (VERBOSE_LOG_LEVEL < mPrintLogLevel) {
685 return ;
686 }
687
688 va_start (List, MsgFmt);
689 PrintSimpleMessage (MsgFmt, List);
690 va_end (List);
691}
692
693VOID
694NormalMsg (

Callers 15

GenCrc32.cFile · 0.85
WriteMapFileFunction · 0.85
GenerateFvImageFunction · 0.85
GetChildFvFromFfsFunction · 0.85
GenerateCapImageFunction · 0.85
TianoCompress.cFile · 0.85
InitializeElf64Function · 0.85
EmitGOTRelocationsFunction · 0.85
ScanSections64Function · 0.85
WriteSections64Function · 0.85
WriteRelocations64Function · 0.85

Calls 1

PrintSimpleMessageFunction · 0.85

Tested by

no test coverage detected