Improved log output for plain actions

here
cpfeiffer 2015-11-30 23:24:45 +01:00
parent 17ba49374c
commit 8585572197
1 changed files with 5 additions and 0 deletions

View File

@ -16,4 +16,9 @@ public abstract class PlainAction extends BtLEAction {
public boolean expectsResult() {
return false;
}
@Override
public String toString() {
return getCreationTime() + ": " + getClass().getSimpleName();
}
}