Improved log output for abort actions
This commit is contained in:
parent
8585572197
commit
4b42a9a4f6
|
@ -25,4 +25,9 @@ public abstract class AbortTransactionAction extends PlainAction {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected abstract boolean shouldAbort();
|
protected abstract boolean shouldAbort();
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return getCreationTime() + ": " + getClass().getSimpleName() + ": aborting? " + shouldAbort();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue