Skip to content

Commit

Permalink
[wasm] [debugger] Removing usage of serilog (#70382)
Browse files Browse the repository at this point in the history
* [wasm] [debugger] Adding serilog dlls

Adding serilog dlls

* Removing serilog usage for Blazor.
  • Loading branch information
thaystg authored Jun 8, 2022
1 parent 655f414 commit 12a6db4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Serilog.Extensions.Logging.File" Version="2.0.0" />

<ProjectReference Include="..\BrowserDebugProxy\BrowserDebugProxy.csproj" />
</ItemGroup>

Expand Down
5 changes: 0 additions & 5 deletions src/mono/wasm/debugger/BrowserDebugHost/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@ public static async Task Main(string[] args)
.AddFilter("DevToolsProxy", LogLevel.Information)
.AddFilter("FirefoxMonoProxy", LogLevel.Information)
.AddFilter(null, LogLevel.Warning);
if (!string.IsNullOrEmpty(options.LogPath))
builder.AddFile(Path.Combine(options.LogPath, "proxy.log"),
minimumLevel: LogLevel.Trace,
outputTemplate: "{Timestamp:o} [{Level:u3}] {SourceContext}: {Message}{NewLine}{Exception}");
});

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

0 comments on commit 12a6db4

Please sign in to comment.