Localize missing string.

This commit is contained in:
2025-07-31 04:21:06 +01:00
parent 078348c054
commit 3cd5cf4b73
5 changed files with 19 additions and 5 deletions

View File

@@ -65,9 +65,11 @@ internal static class Program
// Avalonia configuration, don't remove; also used by visual designer.
public static AppBuilder BuildAvaloniaApp() => AppBuilder.Configure<App>()
.UsePlatformDetect()
#if DEBUG
.LogToSerilog(LogEventLevel.Debug);
#else
//#if DEBUG
// .LogToSerilog(LogEventLevel.Debug);
//#else
.LogToSerilog(LogEventLevel.Information);
#endif
//#endif
}