summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDARAM SUDHA <dsudha@qti.qualcomm.com>2014-03-28 15:50:25 -0700
committerAkash Patel <c_akashp@qca.qualcomm.com>2014-04-04 11:24:18 -0700
commitc9cfbf6a85e67adfa2b704698029af3a135a1a6f (patch)
tree373e563b4f845633b25ca8a7fad3f9ebae25552f
parent6bcd6f9cdcff15565376859dae60f4edf4599af9 (diff)
Wlan: Change the log level for rrmGetMgmtTxPower log prints
rrmGetMgmtTxPower: txpower from rrmPEContext is having LOGE level. Change it to INFO. CRs-Fixed: 640683 (cherry picked from commit d23716d03ee3888c8ae70cb55dd8b885d3c97b24) Change-Id: I4244ca12267fe12312c6c270139585eb055d158f
-rw-r--r--CORE/MAC/src/pe/rrm/rrmApi.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/CORE/MAC/src/pe/rrm/rrmApi.c b/CORE/MAC/src/pe/rrm/rrmApi.c
index b0457a0a89ef..b8cbb9e42242 100644
--- a/CORE/MAC/src/pe/rrm/rrmApi.c
+++ b/CORE/MAC/src/pe/rrm/rrmApi.c
@@ -117,7 +117,11 @@ rrmGetMgmtTxPower ( tpAniSirGlobal pMac, tpPESession pSessionEntry )
PELOGE(limLog( pMac, LOGE, "RrmGetMgmtTxPower called" );)
#endif
if( pSessionEntry == NULL )
+ {
+ limLog( pMac, LOG3, "%s: txpower from rrmPEContext: %d",
+ __func__, pMac->rrm.rrmPEContext.txMgmtPower);
return pMac->rrm.rrmPEContext.txMgmtPower;
+ }
return pSessionEntry->txMgmtPower;
}