We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c84f071 + 2fa1966 commit a56667bCopy full SHA for a56667b
lsp-haskell.el
@@ -93,8 +93,15 @@
93
:group 'lsp-haskell
94
:type 'string)
95
96
+(defcustom lsp-haskell-server-log-file
97
+ (expand-file-name "hls.log" temporary-file-directory)
98
+ "The log file used by the server. Note that this is passed to the server via 'lsp-haskell-server-args', so if
99
+you override that setting then this one will have no effect."
100
+ :group 'lsp-haskell
101
+ :type 'string)
102
+
103
(defcustom lsp-haskell-server-args
- '("-d" "-l" "/tmp/hls.log")
104
+ `("-d" "-l" ,lsp-haskell-server-log-file)
105
"The arguments for starting the language server.
106
For a debug log when using haskell-language-server, use `-d -l /tmp/hls.log'."
107
0 commit comments