Skip to content

Commit

Permalink
Add event name to exception messsage
Browse files Browse the repository at this point in the history
  • Loading branch information
alejo committed Jul 27, 2017
1 parent dbde2cc commit 0b64bbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AsterNET.ARI/ARIClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ private void _eventProducer_OnMessageReceived(object sender, MessageEventArgs e)
catch(Exception ex)
{
// Handle any exceptions that were thrown by the invoked event handler
Console.WriteLine("An event listener exeption: " + ex.Message );
Console.WriteLine("The event listener " + evnt.Type.ToString() + " cause an exeption: " + ex.Message );
}
});
}
Expand Down

0 comments on commit 0b64bbb

Please sign in to comment.