log.info( "Received event [{}]", event );
}
private void hangupCall( Channel channel )
{
SendMsg hangupMsg = new SendMsg();
hangupMsg.addCallCommand( "execute" );
hangupMsg.addExecuteAppName( "hangup" );
EslMessage response = sendSyncMultiLineCommand( channel, hangupMsg.getMsgLines() );
if ( response.getHeaderValue( Name.REPLY_TEXT ).startsWith( "+OK" ) )
{
log.info( "Call hangup successful" );
}