398399400401402403404405406407408
} 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) {
436437438439440441442443444445446
} catch (Throwable e) { String msg = "Unexpected error while creating log entry."; log.error(msg, e); } finally { if (!succeeded && record != null) { record.cancelUpdate(); } } } /**
468469470471472473474475476477478
500501502503504505506507508509510
1268126912701271127212731274127512761277
} catch (Throwable e) { String msg = "Unexpected error while creating log entry."; log.error(msg, e); } finally { if (!succeeded) { record.cancelUpdate(); } } } }
588589590591592593594595596597598
} 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); } } }
633634635636637638639640641642643
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); } } /**
409410411412413414415416417418419
447448449450451452453454455456457
479480481482483484485486487488489