1
0
Fork 0

OsmoCore: Remove logging from cCalls as this doesn't seem to work

This commit is contained in:
Holger Hans Peter Freyther 2010-10-20 21:39:36 +02:00
parent 7d98500e4e
commit 1cfa5c269e
1 changed files with 0 additions and 6 deletions

View File

@ -50,7 +50,6 @@ Object subclass: OSMOCore [
]
OSMOCore class >> bsc_select_main: poll [
self logDebug: '#>>bsc_select_main: called' area: #osmocore.
<cCall: 'bsc_select_main' returning: #int args: #(#int) >
]
@ -59,27 +58,22 @@ Object subclass: OSMOCore [
]
OSMOCore class >> msgb_length: aMsg [
self logDebug: '#>>msgb_length: called' area: #osmocore.
<cCall: 'msgb_length' returning: #uInt args: #(#cObject) >
]
OSMOCore class >> msgb_data: aMsg [
self logDebug: '#>>msgb_data: called' area: #osmocore.
<cCall: 'msgb_data' returning: #cObject args: #(#cObject) >
]
OSMOCore class >> msgb_free: aMsg [
self logDebug: '#>>msgb_free: called' area: #osmocore.
<cCall: 'msgb_free' returning: #void args: #(#cObject) >
]
OSMOCore class >> gsm0480_create_ussd_resp: invokeId trans: transId text: aText [
self logDebug: '#>>gsm0480_create_ussd_resp: called' area: #osmocore.
<cCall: 'gsm0480_create_ussd_resp' returning: #cObject args: #(#int #int #string) >
]
OSMOCore class >> gsm0808_prepend_dtap_header: msg linkId: aId [
self logDebug: '#>>gsm0808_prepend_dtap_header: called' area: #osmocore.
<cCall: 'gsm0808_prepend_dtap_header' returning: #void args: #(#cObject #uInt) >
]
]