| 724 | } |
| 725 | |
| 726 | VOID |
| 727 | KeyMsg ( |
| 728 | CHAR8 *MsgFmt, |
| 729 | ... |
| 730 | ) |
| 731 | /*++ |
| 732 | |
| 733 | Routine Description: |
| 734 | Print a key level message. |
| 735 | |
| 736 | Arguments: |
| 737 | MsgFmt - the format string for the message. Can contain formatting |
| 738 | controls for use with varargs. |
| 739 | List - the variable list. |
| 740 | |
| 741 | Returns: |
| 742 | NA |
| 743 | |
| 744 | --*/ |
| 745 | { |
| 746 | va_list List; |
| 747 | // |
| 748 | // If the debug level is less than current print level, then do nothing. |
| 749 | // |
| 750 | if (KEY_LOG_LEVEL < mPrintLogLevel) { |
| 751 | return ; |
| 752 | } |
| 753 | |
| 754 | va_start (List, MsgFmt); |
| 755 | PrintSimpleMessage (MsgFmt, List); |
| 756 | va_end (List); |
| 757 | } |
| 758 | |
| 759 | VOID |
| 760 | SetPrintLimits ( |
no test coverage detected