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
| 556 | |
| 557 | **/ |
| 558 | VOID |
| 559 | EFIAPI |
| 560 | MemLogf ( |
| 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 | } |
no test coverage detected