msg.append(") before\n");
msg.append(" txn ").append(notice.getTxnId()).append(" (");
msg.append(TransactionIdManager.toString(notice.getTxnId())).append(" HB:");
msg.append(notice instanceof HeartbeatMessage).append(").\n");
TransactionState txn = m_transactionsById.get(notice.getTxnId());
if (txn != null) {
msg.append("New notice transaction already known: " + txn.toString() + "\n");
}
else {
msg.append("New notice is for new or completed transaction.\n");
}
msg.append("New notice of type: " + notice.getClass().getName());