summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2012-07-05 01:30:37 +0200
committerPierre Bourdon <delroth@gmail.com>2012-07-05 01:30:37 +0200
commitdd48b246b26ae400aa07ad89112637bda403bc0d (patch)
treea82008615f7fd1f83db10d89806d2e54db04ffc0 /Source/Core
parent5db70f452be044cd5cf2543f758dd7cfbad622ef (diff)
Reduce logging verbosity in the Linux BBA code
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Src/HW/BBA-TAP/TAP_Unix.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/Src/HW/BBA-TAP/TAP_Unix.cpp b/Source/Core/Core/Src/HW/BBA-TAP/TAP_Unix.cpp
index 78c9822d3e..97c73eeb40 100644
--- a/Source/Core/Core/Src/HW/BBA-TAP/TAP_Unix.cpp
+++ b/Source/Core/Core/Src/HW/BBA-TAP/TAP_Unix.cpp
@@ -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();
}