You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,28 @@ To install it in Julia ≥ 1.6, use the package manager with
21
21
pkg> add LiveServer
22
22
```
23
23
24
+
### Broken pipe message
25
+
26
+
Infrequently, you _may_ see an error message in your console while using LiveServer that does not
27
+
interrupt the server and does not otherwise affect your ability to see updates in the browser.
28
+
This error message will look like
29
+
30
+
```
31
+
┌ LogLevel(1999): handle_connection handler error
32
+
│ exception =
33
+
│ IOError: write: broken pipe (EPIPE)
34
+
```
35
+
36
+
You can basically ignore this message, it's a problem with [HTTP.jl](https://github.com/JuliaWeb/HTTP.jl).
37
+
38
+
If your application depends on LiveServer and you'd like to avoid having that kind of messages being shown to your users, you can consider using [LoggingExtras.jl](https://github.com/JuliaLogging/LoggingExtras.jl) which
39
+
allows you to filter out messages based on their provenance.
40
+
41
+
We experimented with shipping LoggingExtras in LiveServer but ended up rolling that back as it made
42
+
other applications less stable.
43
+
44
+
45
+
24
46
### Legacy notes
25
47
26
48
For Julia `< 1.6`, you can use LiveServer's version 0.9.2:
0 commit comments