From 216c6fdcb65446358b4efd74f6f50b024ed9812b Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Thu, 10 Jul 2014 18:58:45 +0200 Subject: [PATCH] mgcp: We want to create an Error and raise it here This is not a log message. This means the area: argument of the message is completely bogus. Found while running a MGCP CallAgent and the MGCP GW was restarting. --- callagent/MGCPEndpoint.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/callagent/MGCPEndpoint.st b/callagent/MGCPEndpoint.st index 42a23ff..c373e3b 100644 --- a/callagent/MGCPEndpoint.st +++ b/callagent/MGCPEndpoint.st @@ -83,7 +83,7 @@ Object subclass: MGCPEndpoint [ state = aState ifFalse: [ ^ self error: 'MGCPEndpoint(%1) not %2.' - % {self endpointName. aState} area: #mgcp. + % {self endpointName. aState}. ]. ]