627628629630631632633634635636637
log.info("not started: update cancel ignored."); return; } Record record = (Record) update.getAttribute(ATTRIBUTE_RECORD); if (record != null) { record.cancelUpdate(); update.setAttribute(ATTRIBUTE_RECORD, null); } } /**
578579580581582583584585586587588
} catch (Throwable e) { String msg = "Unexpected error while preparing log entry."; log.error(msg, e); } finally { if (!succeeded && record != null) { record.cancelUpdate(); update.setAttribute(ATTRIBUTE_RECORD, null); } } }
623624625626627628629630631632633
409410411412413414415416417418419
} catch (Throwable e) { String msg = "Unexpected error while creating log entry."; log.error(msg, e); } finally { if (!succeeded && record != null) { record.cancelUpdate(); } } } public void setListener(NamespaceEventListener listener) {
447448449450451452453454455456457
} catch (Throwable e) { String msg = "Unexpected error while creating log entry."; log.error(msg, e); } finally { if (!succeeded && record != null) { record.cancelUpdate(); } } } /**
479480481482483484485486487488489
511512513514515516517518519520521
1279128012811282128312841285128612871288
} catch (Throwable e) { String msg = "Unexpected error while creating log entry."; log.error(msg, e); } finally { if (!succeeded) { record.cancelUpdate(); } } } }
599600601602603604605606607608609
644645646647648649650651652653654