diff options
| author | Poddar, Siddarth <siddpodd@qti.qualcomm.com> | 2016-05-06 16:11:29 +0530 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2016-05-10 03:49:52 -0700 |
| commit | 80958313f54e9dd8a059926be7dab7c3dbc92cdf (patch) | |
| tree | b21a62397b452c200c7c46ee326b08bd75dfff2d | |
| parent | e2ec79435dd25e31bc2e567f417228968a769f75 (diff) | |
qcacld-2.0: Reduce unnecessary logging in HL Datapath
Reduce unnecessary logging by reducing the log level in bundle packet
for High Latency Datapath.
CRs-Fixed: 972009
Change-Id: I4d28876f206cb155f2d0df51628347e6f3493262
| -rw-r--r-- | CORE/CLD_TXRX/TXRX/ol_tx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CORE/CLD_TXRX/TXRX/ol_tx.c b/CORE/CLD_TXRX/TXRX/ol_tx.c index cb78aa61d5b0..0cc3eb446896 100644 --- a/CORE/CLD_TXRX/TXRX/ol_tx.c +++ b/CORE/CLD_TXRX/TXRX/ol_tx.c @@ -827,7 +827,7 @@ ol_tx_pdev_reset_bundle_require(void* pdev_handle) TAILQ_FOREACH(vdev, &pdev->vdev_list, vdev_list_elem) { vdev->bundling_reqired = false; - TXRX_PRINT(TXRX_PRINT_LEVEL_ERR, + TXRX_PRINT(TXRX_PRINT_LEVEL_INFO1, "vdev_id %d bundle_require %d\n", vdev->vdev_id, vdev->bundling_reqired); } @@ -860,7 +860,7 @@ ol_tx_vdev_set_bundle_require(uint8_t vdev_id, unsigned long tx_bytes, vdev->bundling_reqired = false; if (old_bundle_required != vdev->bundling_reqired) - TXRX_PRINT(TXRX_PRINT_LEVEL_ERR, + TXRX_PRINT(TXRX_PRINT_LEVEL_INFO1, "vdev_id %d bundle_require %d tx_bytes %ld time_in_ms %d high_th %d low_th %d\n", vdev->vdev_id, vdev->bundling_reqired, tx_bytes, time_in_ms, high_th, low_th); |
