1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-30 08:46:16 +02:00

Improved log output for progress actions

This commit is contained in:
cpfeiffer 2015-11-30 23:27:47 +01:00
parent 4b42a9a4f6
commit 40d7f3b19f

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 + "%";
}
}