mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-12-26 09:22:00 +08:00
Don't create duplicate log lines on Windows (#2668)
This commit is contained in:
parent
a66073ebf3
commit
1f92e8ca52
2 changed files with 1 additions and 6 deletions
|
@ -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))
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue