aboutsummaryrefslogtreecommitdiffstats
path: root/library/RSL_Emulation.ttcn
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-04-15 11:21:55 +0200
committerHarald Welte <laforge@gnumonks.org>2018-04-15 11:21:55 +0200
commit80f7687f18a57e88abf56bf5e28c823deb8361d7 (patch)
tree81f2f8f53b3085023c8ce5bb5151f0dd51c9fd41 /library/RSL_Emulation.ttcn
parentf56cc49d758c5b980e22f172e8967352426c4eb6 (diff)
RSL_Emulation: Less verbose logging
Don't use explicit log() statements for normal message forwarding between ports. This will be visible in the automatically-generated log statements anyway... Change-Id: Idcfb1897dd00df1839cf1a0182a5a030bf71c0cb
Diffstat (limited to 'library/RSL_Emulation.ttcn')
-rw-r--r--library/RSL_Emulation.ttcn4
1 files changed, 0 insertions, 4 deletions
diff --git a/library/RSL_Emulation.ttcn b/library/RSL_Emulation.ttcn
index b743d60b..3ad062be 100644
--- a/library/RSL_Emulation.ttcn
+++ b/library/RSL_Emulation.ttcn
@@ -354,7 +354,6 @@ function main(boolean bts_role := true) runs on RSL_Emulation_CT {
var GsmRrMessage rr;
var OCT1 ra;
var GsmFrameNumber fn;
- log("IMM ASS INFO ", rx_rsl.rsl.ies[1].body);
rr := dec_GsmRrMessage(rx_rsl.rsl.ies[1].body.full_imm_ass_info.payload);
if (ischosen(rr.payload.imm_ass)) {
ra := bit2oct(rr.payload.imm_ass.req_ref.ra);
@@ -389,7 +388,6 @@ function main(boolean bts_role := true) runs on RSL_Emulation_CT {
}
[bts_role] IPA_PT.receive(tr_RSL(tr_RSL_PAGING_CMD(?, ?))) -> value rx_rsl {
- log("PAGING IDENTITY ", rx_rsl.rsl.ies[2].body.other);
/* broadcast to all clients? */
for (i := 0; i < sizeof(ConnectionTable); i := i + 1) {
if (ispresent(ConnectionTable[i].comp_ref)) {
@@ -400,13 +398,11 @@ function main(boolean bts_role := true) runs on RSL_Emulation_CT {
/* Forward common channel management to the special port for it */
[] IPA_PT.receive(tr_RSL(tr_RSL_MsgTypeT(?))) -> value rx_rsl {
- log("Forwarding TRX Mgmt ", rx_rsl.rsl);
CCHAN_PT.send(rx_rsl);
}
/* Forward common channel management to the special port for it */
[] IPA_PT.receive(tr_RSL(tr_RSL_MsgTypeC(?))) -> value rx_rsl {
- log("Forwarding Common Channel Mgmt ", rx_rsl.rsl);
CCHAN_PT.send(rx_rsl);
}