We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f19ed4f commit ae64179Copy full SHA for ae64179
CutCode.CrossPlatform/Program.cs
@@ -1,6 +1,7 @@
1
-using System;
+using System;
2
using System.Diagnostics;
3
using Avalonia;
4
+using Avalonia.Logging;
5
using Avalonia.Controls.ApplicationLifetimes;
6
using Avalonia.ReactiveUI;
7
namespace CutCode.CrossPlatform
@@ -23,7 +24,7 @@ public static void Main(string[] args)
23
24
public static AppBuilder BuildAvaloniaApp()
25
=> AppBuilder.Configure<App>()
26
.UsePlatformDetect()
- .LogToTrace()
27
+ .LogToTrace(level: LogEventLevel.Information)
28
.UseReactiveUI();
29
}
30
0 commit comments