Improved log output for progress actions

here
cpfeiffer 2015-11-30 23:27:47 +01:00
parent 4b42a9a4f6
commit 40d7f3b19f
1 changed files with 5 additions and 0 deletions

View File

@ -33,4 +33,9 @@ public class SetProgressAction extends PlainAction {
GB.updateInstallNotification(this.text, this.ongoing, this.percentage, this.context);
return true;
}
@Override
public String toString() {
return getCreationTime() + ": " + getClass().getSimpleName() + ": " + text + "; " + percentage + "%";
}
}