diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f08fb354..28b51143f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,6 +47,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). * File download in the .exs notebook export * (Desktop) `~/.livebookdesktop.sh` to allow setting `LIVEBOOK_NODE` and `LIVEBOOK_SHUTDOWN_ENABLED` ([#2464](https://github.com/livebook-dev/livebook/pull/2464)) +* (Desktop) Don't create duplicate log lines on Windows ([#2668](https://github.com/livebook-dev/livebook/pull/2668)) * Using environment variables for S3 file system credentials ([#2472](https://github.com/livebook-dev/livebook/pull/2472)) * Redesigned flash messages to allow copying the message without closing it ([#2484](https://github.com/livebook-dev/livebook/pull/2484)) * Completion relevance within multiline maps and bitstrings ([#2488](https://github.com/livebook-dev/livebook/pull/2488)) diff --git a/elixirkit/elixirkit_dotnet/ElixirKit.cs b/elixirkit/elixirkit_dotnet/ElixirKit.cs index 156ae6526..42602eb1b 100644 --- a/elixirkit/elixirkit_dotnet/ElixirKit.cs +++ b/elixirkit/elixirkit_dotnet/ElixirKit.cs @@ -156,11 +156,6 @@ internal class Release } }; - if (logPath != null) - { - logger.Capture(process); - } - process.StartInfo.Arguments = "start"; process.StartInfo.EnvironmentVariables.Add("ELIXIRKIT_PORT", $"{listener.Port}"); @@ -184,7 +179,6 @@ internal class Release }; logger.Capture(process); - process.Start(); process.BeginOutputReadLine(); process.BeginErrorReadLine();