Reduce logging verbosity in the Linux BBA code
This commit is contained in:
parent
5db70f452b
commit
dd48b246b2
|
@ -99,7 +99,7 @@ bool CEXIETHERNET::IsActivated()
|
|||
bool CEXIETHERNET::SendFrame(u8* frame, u32 size)
|
||||
{
|
||||
#ifdef __linux__
|
||||
WARN_LOG(SP1, "SendFrame %x\n%s", size, ArrayToString(frame, size, 0x10).c_str());
|
||||
INFO_LOG(SP1, "SendFrame %x\n%s", size, ArrayToString(frame, size, 0x10).c_str());
|
||||
|
||||
int writtenBytes = write(fd, frame, size);
|
||||
if ((u32)writtenBytes != size)
|
||||
|
@ -143,7 +143,7 @@ void ReadThreadHandler(CEXIETHERNET* self)
|
|||
}
|
||||
else if (self->readEnabled)
|
||||
{
|
||||
WARN_LOG(SP1, "Read data: %s", ArrayToString(self->mRecvBuffer, readBytes, 0x10).c_str());
|
||||
INFO_LOG(SP1, "Read data: %s", ArrayToString(self->mRecvBuffer, readBytes, 0x10).c_str());
|
||||
self->mRecvBufferLength = readBytes;
|
||||
self->RecvHandlePacket();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue