aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-06-29 14:12:36 +0200
committerHarald Welte <laforge@gnumonks.org>2011-06-29 14:12:36 +0200
commit35030111f42947efc7c9b9e145537b4dbef23709 (patch)
tree90777c438d5ec2aeac5ecc2e04ac95f736d425d1 /src
parenta7d6261108cf6fcc142b7b864639d63d2fc23391 (diff)
Sysmocom l1if: Don't print hex-dumps of AGCH/SACCH messages anymore
Diffstat (limited to 'src')
-rw-r--r--src/osmo-bts-sysmo/l1_if.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/osmo-bts-sysmo/l1_if.c b/src/osmo-bts-sysmo/l1_if.c
index 5508fa64..25c5b91c 100644
--- a/src/osmo-bts-sysmo/l1_if.c
+++ b/src/osmo-bts-sysmo/l1_if.c
@@ -275,8 +275,6 @@ static int handle_ph_readytosend_ind(struct femtol1_hdl *fl1,
memcpy(msu_param->u8Buffer+2, pp.oph.msg->data, GSM_MACBLOCK_LEN-2);
msgb_free(pp.oph.msg);
}
- DEBUGP(DL1C, "Sending SACCH payload bytes: %s\n",
- osmo_hexdump(msu_param->u8Buffer, GSM_MACBLOCK_LEN));
break;
case GsmL1_Sapi_Sdcch:
/* resolve the L2 entity using rts_ind->hLayer2 */
@@ -297,8 +295,6 @@ static int handle_ph_readytosend_ind(struct femtol1_hdl *fl1,
if (!msg)
memcpy(msu_param->u8Buffer, fill_frame, GSM_MACBLOCK_LEN);
else {
- DEBUGP(DL1C, "Sending AGCH payload %u bytes: %s\n",
- msg->len, osmo_hexdump(msg->data, msg->len));
memcpy(msu_param->u8Buffer, msg->data, msg->len);
msgb_free(msg);
}