alloc: Disable inner loop debugging by default

The current logging statements within the inner loop of
find_multi_slots drain quite a lot of CPU resources even if
LOGL_DEBUG is not enabled. This might cause issues on the target
hardware.

This commit disables these LOGP calls unless the
ENABLE_TS_ALLOC_DEBUG macro has been set explicitly. This results in
a reduction in the CPU usage reported by callgrind for
find_multi_slots from 42% to 25% when executing AllocTest.

Sponsored-by: On-Waves ehf
diff --git a/src/gprs_rlcmac_ts_alloc.cpp b/src/gprs_rlcmac_ts_alloc.cpp
index 5edf9ff..8c42bb1 100644
--- a/src/gprs_rlcmac_ts_alloc.cpp
+++ b/src/gprs_rlcmac_ts_alloc.cpp
@@ -501,12 +501,14 @@
 #endif
 
 		if (!rx_good) {
+#ifdef ENABLE_TS_ALLOC_DEBUG
 			LOGP(DRLCMAC, LOGL_DEBUG,
 				"- Skipping DL/UL slots: (TS=0)\"%s\"(TS=7), "
 				"no DL slots available\n",
 				set_flag_chars(set_flag_chars(slot_info,
 						rx_bad, 'x', '.'),
 						tx_window, 'U'));
+#endif
 			continue;
 		}
 
@@ -520,16 +522,18 @@
 			req_common_slots = OSMO_MIN(req_common_slots, 2);
 
 		if (req_common_slots != common_slot_count) {
-		LOGP(DRLCMAC, LOGL_DEBUG,
-			"- Skipping DL/UL slots: (TS=0)\"%s\"(TS=7), "
-			"invalid number of common TS: %d (expected %d)\n",
-			set_flag_chars(set_flag_chars(set_flag_chars(
-					slot_info,
-					rx_bad, 'x', '.'),
-					rx_window, 'D'),
+#ifdef ENABLE_TS_ALLOC_DEBUG
+			LOGP(DRLCMAC, LOGL_DEBUG,
+				"- Skipping DL/UL slots: (TS=0)\"%s\"(TS=7), "
+				"invalid number of common TS: %d (expected %d)\n",
+				set_flag_chars(set_flag_chars(set_flag_chars(
+							slot_info,
+							rx_bad, 'x', '.'),
+						rx_window, 'D'),
 					tx_window, 'U'),
-			common_slot_count,
-			req_common_slots);
+				common_slot_count,
+				req_common_slots);
+#endif
 			continue;
 		}
 
@@ -554,6 +558,7 @@
 			}
 		}
 
+#ifdef ENABLE_TS_ALLOC_DEBUG
 		LOGP(DRLCMAC, LOGL_DEBUG,
 			"- Considering DL/UL slots: (TS=0)\"%s\"(TS=7), "
 			"capacity = %d\n",
@@ -564,6 +569,7 @@
 					tx_window, 'U'),
 					rx_window & tx_window, 'C'),
 			capacity);
+#endif
 
 		if (capacity <= max_capacity)
 			continue;