Skip to content

Commit 12a6db4

Browse files
authored
[wasm] [debugger] Removing usage of serilog (#70382)
* [wasm] [debugger] Adding serilog dlls Adding serilog dlls * Removing serilog usage for Blazor.
1 parent 655f414 commit 12a6db4

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

src/mono/wasm/debugger/BrowserDebugHost/BrowserDebugHost.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Serilog.Extensions.Logging.File" Version="2.0.0" />
11-
1210
<ProjectReference Include="..\BrowserDebugProxy\BrowserDebugProxy.csproj" />
1311
</ItemGroup>
1412

src/mono/wasm/debugger/BrowserDebugHost/Program.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,6 @@ public static async Task Main(string[] args)
3030
.AddFilter("DevToolsProxy", LogLevel.Information)
3131
.AddFilter("FirefoxMonoProxy", LogLevel.Information)
3232
.AddFilter(null, LogLevel.Warning);
33-
34-
if (!string.IsNullOrEmpty(options.LogPath))
35-
builder.AddFile(Path.Combine(options.LogPath, "proxy.log"),
36-
minimumLevel: LogLevel.Trace,
37-
outputTemplate: "{Timestamp:o} [{Level:u3}] {SourceContext}: {Message}{NewLine}{Exception}");
3833
});
3934

4035
await DebugProxyHost.RunDebugProxyAsync(options, args, loggerFactory, CancellationToken.None);

0 commit comments

Comments
 (0)