Skip to content

Commit

Permalink
NetworkPkg/MnpDxe: Convert TX buffer allocation messages to DEBUG_VER…
Browse files Browse the repository at this point in the history
…BOSE

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 <[email protected]>
  • Loading branch information
mikebeaton committed Sep 9, 2024
1 parent 2286ed0 commit 261ae47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NetworkPkg/MnpDxe/MnpConfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 261ae47

Please sign in to comment.