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

Function MemLogf

Library/MemLogLibDefault/MemLogLib.c:558–576  ·  view source on GitHub ↗

Prints a log to message memory buffer. If Format is NULL, then does nothing. @param Timing TRUE to prepend timing to log. @param DebugMode DebugMode will be passed to Callback function if it is set. @param Format The format string for the debug message to print. @param ... The variable argument list whose contents are accessed based on the format string specif

Source from the content-addressed store, hash-verified

556
557 **/
558VOID
559EFIAPI
560MemLogf (
561 IN CONST BOOLEAN Timing,
562 IN CONST INTN DebugMode,
563 IN CONST CHAR8 *Format,
564 ...
565 )
566{
567 VA_LIST Marker;
568
569 if (Format == NULL) {
570 return;
571 }
572
573 VA_START (Marker, Format);
574 MemLogfVA (Timing, DebugMode, Format, Marker);
575 VA_END (Marker);
576}

Callers 1

MemLogInitFunction · 0.85

Calls 1

MemLogfVAFunction · 0.85

Tested by

no test coverage detected