try {
m_store.put(type, properties);
}
catch (NullPointerException e) {
// if we cannot store the event, we log it to the normal log as extensively as possible
m_log.log(LogService.LOG_WARNING, "Could not store event: " + (new LogEvent("", 0, 0, 0, type, properties)).toRepresentation(), e);
}
catch (IOException e) {
// if we cannot store the event, we log it to the normal log as extensively as possible
m_log.log(LogService.LOG_WARNING, "Could not store event: " + (new LogEvent("", 0, 0, 0, type, properties)).toRepresentation(), e);
}
}