Print MAC addresses when corresponding sessions are not found

Print MAC adresses for code in rrmSetMaxTxPowerRsp and
WDI_ProcessHostOffloadReq when we fail to find sessions to
help in debugging

Change-Id: Iaaa6f9ea29c92e3551aff976734590247c170b01
diff --git a/CORE/MAC/src/pe/rrm/rrmApi.c b/CORE/MAC/src/pe/rrm/rrmApi.c
index d276e51..8cd8bca 100644
--- a/CORE/MAC/src/pe/rrm/rrmApi.c
+++ b/CORE/MAC/src/pe/rrm/rrmApi.c
@@ -39,15 +39,15 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
+
+
+
 /**=========================================================================
   
   \file  rrmApi.c
   
   \brief implementation for PE RRM APIs
   
-   Copyright 2008 (c) Qualcomm, Incorporated.  All Rights Reserved.
-   
-   Qualcomm Confidential and Proprietary.
   
   ========================================================================*/
 
@@ -228,6 +228,7 @@
    if((pSessionEntry = peFindSessionByBssid(pMac, pMaxTxParams->bssId, &sessionId))==NULL)
    {
       PELOGE(limLog(pMac, LOGE, FL("Unable to find session:") );)
+      limPrintMacAddr( pMac, pMaxTxParams->bssId, LOGE );
       retCode = eSIR_FAILURE;
    }
    else