improved debug functionality

This commit is contained in:
2025-08-13 11:34:27 +02:00
parent f17eb56506
commit a09bdcc7aa
3 changed files with 21 additions and 18 deletions

View File

@@ -104,6 +104,11 @@ public abstract class AbstractLoadingBar {
}
protected void showLoadingBar(boolean debug, boolean passedMinutesZero) {
showLoadingBar(debug, passedMinutesZero, 100L);
}
protected void showLoadingBarDebug(boolean passedMinutesZero, long millisWaiting) {
showLoadingBar(true, passedMinutesZero, millisWaiting);
}