diff --git a/src/core/mac/mac.cpp b/src/core/mac/mac.cpp index 2dabcbce5..a32d19171 100644 --- a/src/core/mac/mac.cpp +++ b/src/core/mac/mac.cpp @@ -618,7 +618,7 @@ void Mac::SendBeaconRequest(Frame &aFrame) aFrame.SetDstAddr(kShortAddrBroadcast); aFrame.SetCommandId(Frame::kMacCmdBeaconRequest); - otLogInfoMac("Sent Beacon Request"); + otLogDebgMac("Sent Beacon Request"); } void Mac::SendBeacon(Frame &aFrame) @@ -654,7 +654,7 @@ void Mac::SendBeacon(Frame &aFrame) aFrame.SetPayloadLength(sizeof(*beacon)); - otLogInfoMac("Sent Beacon"); + otLogDebgMac("Sent Beacon"); } void Mac::HandleBeginTransmit(void *aContext) @@ -960,7 +960,7 @@ void Mac::HandleReceiveTimer(void *aContext) void Mac::HandleReceiveTimer(void) { - otLogInfoMac("data poll timeout!"); + otLogDebgMac("data poll timeout!"); if (mState == kStateIdle) { @@ -1459,7 +1459,7 @@ ThreadError Mac::HandleMacCommand(Frame &aFrame) { case Frame::kMacCmdBeaconRequest: mCounters.mRxBeaconRequest++; - otLogInfoMac("Received Beacon Request"); + otLogDebgMac("Received Beacon Request"); mTransmitBeacon = true; diff --git a/src/core/thread/mesh_forwarder.cpp b/src/core/thread/mesh_forwarder.cpp index 58a30d0f4..77584d446 100644 --- a/src/core/thread/mesh_forwarder.cpp +++ b/src/core/thread/mesh_forwarder.cpp @@ -933,7 +933,7 @@ ThreadError MeshForwarder::SendMacDataRequest(void) if (error == kThreadError_None) { - otLogInfoMac("Sent poll"); + otLogDebgMac("Sent poll"); // restart the polling timer mPollTimer.Start(mPollPeriod);