no message

This commit is contained in:
2024-10-07 22:04:09 +03:00
parent 7fac84740d
commit 17c0bf7eb3
103 changed files with 560 additions and 491 deletions

View File

@@ -66,7 +66,7 @@ public class Pass_2021<T> {
if (pass.hasStats())
FAPasses.add(pass);
} catch (Exception ex) {
Global.Log.PrintException(ex);
CommonUtils.MainLog.PrintException(ex);
}
}
}
@@ -132,7 +132,7 @@ public class Pass_2021<T> {
if (Current.HasProject())
UI.fastAccessMenuBar.Refresh();
} catch (Exception ex) {
Global.Log.PrintException(ex);
CommonUtils.MainLog.PrintException(ex);
}
}
}
@@ -280,7 +280,7 @@ public class Pass_2021<T> {
if (ex instanceof PassException) {
Log.Writeln_(ex.getMessage());
} else
Global.Log.PrintException(ex);
CommonUtils.MainLog.PrintException(ex);
}
public boolean start(Object... args) {
//------------------------------->
@@ -292,7 +292,7 @@ public class Pass_2021<T> {
target = null;
Log = new TextLog();
if (!getDescription().isEmpty())
Global.Log.Print(DebugPrintLevel.Passes, getDescription() + " стартует..");
CommonUtils.MainLog.Print(DebugPrintLevel.Passes, getDescription() + " стартует..");
timer.Start();
//------------------------------->
try {
@@ -323,7 +323,7 @@ public class Pass_2021<T> {
try {
animation_sem.acquire();
} catch (InterruptedException e) {
Global.Log.PrintException(e);
CommonUtils.MainLog.PrintException(e);
}
//и уничтожаем его.
// UI.Print(DebugPrintLevel.Passes, "Окно анимации активировано.");
@@ -374,12 +374,12 @@ public class Pass_2021<T> {
}
} catch (Exception ex) {
state = PassState.ExternalCrushed;
Global.Log.PrintException(ex);
CommonUtils.MainLog.PrintException(ex);
}
//------------------------------->
timer.Stop();
if (!getDescription().isEmpty()) {
Global.Log.Print(DebugPrintLevel.Passes,
CommonUtils.MainLog.Print(DebugPrintLevel.Passes,
getDescription() +
" окончен за " + timer.Print() +
" состояние " + CommonUtils.Brackets(state.getDescription())