| 658 | } |
| 659 | |
| 660 | VOID |
| 661 | VerboseMsg ( |
| 662 | CHAR8 *MsgFmt, |
| 663 | ... |
| 664 | ) |
| 665 | /*++ |
| 666 | |
| 667 | Routine Description: |
| 668 | Print a verbose level message. |
| 669 | |
| 670 | Arguments: |
| 671 | MsgFmt - the format string for the message. Can contain formatting |
| 672 | controls for use with varargs. |
| 673 | List - the variable list. |
| 674 | |
| 675 | Returns: |
| 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 | |
| 693 | VOID |
| 694 | NormalMsg ( |
no test coverage detected