Improved log output for abort actions

here
cpfeiffer 2015-11-30 23:25:58 +01:00
parent 8585572197
commit 4b42a9a4f6
1 changed files with 5 additions and 0 deletions

View File

@ -25,4 +25,9 @@ public abstract class AbortTransactionAction extends PlainAction {
}
protected abstract boolean shouldAbort();
@Override
public String toString() {
return getCreationTime() + ": " + getClass().getSimpleName() + ": aborting? " + shouldAbort();
}
}