@Override
public void deleteChronicle(UpdatableChronicle entity) throws T2DBException {
getWriteMethodsForChroniclesAndSeries().deleteChronicle(entity, getChronicleUpdatePolicy());
// pass name and description as comment, because they are lost when logger gets them
String comment = getNamingPolicy().joinValueAndDescription(entity.getName(true), entity.getDescription(false));
publish(new UpdateEventImpl(UpdateEventOperation.DELETE, entity).withComment(comment));
}