smalltalk
/
osmo-st-all
Archived
1
0
Fork 0

sccp: Log the exception using the logException target

This commit is contained in:
Holger Hans Peter Freyther 2011-06-21 21:35:51 +02:00
parent e3cc57ffcd
commit 8f526dea2d
1 changed files with 2 additions and 2 deletions

View File

@ -344,8 +344,8 @@ Object subclass: SCCPHandler [
[
sccp := self dissectMSG: aMsg asByteArray.
] on: Exception do: [
self logError: 'Failed to parse message' area: #sccp.
] on: Exception do: [:e |
e logException: 'Failed to parse message' area: #sccp.
aMsg toMessageOrByteArray printNl.
^ false
].