* Converts the given logback {@link ILoggingEvent} into a bugsnag {@link NotificationVO}.
* @param loggingEvent the event to convert
* @return a new instance of {@link NotificationVO}
*/
public NotificationVO convertToNotification(final ILoggingEvent loggingEvent) {
final NotificationVO notification = new NotificationVO();
notification.setApiKey(configuration.getApiKey());
notification.addEvents(convertToEvents(loggingEvent));
return notification;
}