From 408f201c0fbbfbf014cb7f1670b576b39d964781 Mon Sep 17 00:00:00 2001 From: Abtin Keshavarzian Date: Tue, 26 Sep 2017 23:24:42 -0700 Subject: [PATCH] [mesh-forwarder] add RSS info to "Rx: data poll" log message (#2224) --- src/core/thread/mesh_forwarder.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/thread/mesh_forwarder.cpp b/src/core/thread/mesh_forwarder.cpp index 9c7945498..dd805404c 100644 --- a/src/core/thread/mesh_forwarder.cpp +++ b/src/core/thread/mesh_forwarder.cpp @@ -2338,7 +2338,8 @@ void MeshForwarder::HandleDataRequest(const Mac::Address &aMacSource, const otTh mScheduleTransmissionTask.Post(); - otLogInfoMac(GetInstance(), "Rx data poll, src:0x%04x, qed_msgs:%d", child->GetRloc16(), indirectMsgCount); + otLogInfoMac(GetInstance(), "Rx data poll, src:0x%04x, qed_msgs:%d, rss:%d", child->GetRloc16(), indirectMsgCount, + aLinkInfo.mRss); exit: return;