* @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;
}
private List<EventVO> convertToEvents(final ILoggingEvent loggingEvent) {
final EventVO event = new EventVO();