File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
ghcide/src/Development/IDE/LSP Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -70,8 +70,10 @@ data Log
7070
7171instance Pretty Log where
7272 pretty = \ case
73+ LogServerExitWith (Right 0 ) ->
74+ " Server exited with succefully"
7375 LogServerExitWith (Right code) ->
74- " Server exited with code" <+> pretty code
76+ " Server exited with failure code" <+> pretty code
7577 LogServerExitWith (Left _) ->
7678 " Server forcefully exited due to exception in reactor thread"
7779 LogShutDownTimeout seconds ->
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ echo "[loop] Starting at ${start_ts}" >&2
3232
3333# Pattern strings to detect issues (keep simple & literal for robustness)
3434BROKEN_PIPE_RE=' Broken pipe'
35- TEST_FAILED_RE=' tests failed '
35+ TEST_FAILED_RE=' fail '
3636DEBUG_DETECT=" ${DEBUG_DETECT:- 0} "
3737
3838if [[ -z " ${NO_BUILD_ONCE:- } " ]]; then
You can’t perform that action at this time.
0 commit comments