aboutsummaryrefslogtreecommitdiffstats
path: root/SCCPHandler.st
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-06-22 20:21:47 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-06-22 20:21:47 +0200
commitdc184dd1ac4a72a7d8b29a688e3850d72b8f496f (patch)
tree0518b56ed684025bf9244f93605af10b59c29235 /SCCPHandler.st
parentce92f7afd59175a5d1255632eb58c7637c7e36fc (diff)
sccp: Improve the log messages and pick the SCCP(srcref:...) format
Diffstat (limited to 'SCCPHandler.st')
-rw-r--r--SCCPHandler.st4
1 files changed, 2 insertions, 2 deletions
diff --git a/SCCPHandler.st b/SCCPHandler.st
index 3cc6f89..82834c1 100644
--- a/SCCPHandler.st
+++ b/SCCPHandler.st
@@ -290,7 +290,7 @@ My timeout values can be seen in ITU Q.714 Annex C.4'>
releaseTimeout [
<category: 'release-timer'>
- self logError: 'Release timeout.' area: #sccp.
+ self logError: 'SCCP(srcref:%1) RLC timeout.' % {self srcRef} area: #sccp.
t_int := self schedule: self class tintTime block: [self forceRelease].
self release.
]
@@ -525,7 +525,7 @@ deadlocks should not occur.'>
connectionTimeout: aConnection [
<category: 'private'>
- self logError: 'SCCP Connection %1 timedout' % {aConnection srcRef} area: #sccp.
+ self logError: 'SCCP(srcref:%1) conn timedout' % {aConnection srcRef} area: #sccp.
self doTerminate: aConnection.
self removeConnection: aConnection.
]