Skip to content

Commit

Permalink
fix: ignore null outcome from remote disconnect
Browse files Browse the repository at this point in the history
  • Loading branch information
rdavisau committed Jan 27, 2023
1 parent d265a8b commit c115ad0
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -71,6 +71,7 @@ public async Task Run()
.Select(IncrementalCompiler.StageFile)
.Where(x => x != null)
.SelectMany(SendAssemblyForReload!)
.Where(x => x is not null)
.Subscribe(x => Logger.Log(x.Success ? LogLevel.Information : LogLevel.Error, "Send incremental assembly outcome: {@Outcome}", x));

Logger.LogInformation("FileEnvironment for client {@Client} initialised", Client);
Expand Down

0 comments on commit c115ad0

Please sign in to comment.