mirror of https://github.com/acidanthera/audk.git
NetworkPkg/MnpDxe: Convert TX buffer allocation messages to DEBUG_VERBOSE
Under normal operation, some 30 or so of these lines logged as DEBUG_INFO on first transmit. This is not relevant information for users of the driver, so convert these messages to VERBOSE. Signed-off-by: Mike Beaton <mjsbeaton@gmail.com>
This commit is contained in:
parent
2286ed0d42
commit
261ae47e07
|
@ -234,7 +234,7 @@ MnpAddFreeTxBuf (
|
|||
break;
|
||||
}
|
||||
|
||||
DEBUG ((DEBUG_INFO, "MnpAddFreeTxBuf: Add TxBufWrap %p, TxBuf %p\n", TxBufWrap, TxBufWrap->TxBuf));
|
||||
DEBUG ((DEBUG_VERBOSE, "MnpAddFreeTxBuf: Add TxBufWrap %p, TxBuf %p\n", TxBufWrap, TxBufWrap->TxBuf));
|
||||
TxBufWrap->Signature = MNP_TX_BUF_WRAP_SIGNATURE;
|
||||
TxBufWrap->InUse = FALSE;
|
||||
InsertTailList (&MnpDeviceData->FreeTxBufList, &TxBufWrap->WrapEntry);
|
||||
|
|
Loading…
Reference in New Issue