diff options
author | Teddy Wing | 2021-02-21 17:56:14 +0100 |
---|---|---|
committer | Teddy Wing | 2021-02-21 17:56:14 +0100 |
commit | 38222bb0ae1d282a458c3318a1789d932bd0655b (patch) | |
tree | b3e9afeef3be0a681d6fe0a66535a726c60c71c6 /l/src/option.lisp | |
parent | 43cebf3ff4014510e9e4b034fbc630eb87561c7f (diff) | |
download | extreload-38222bb0ae1d282a458c3318a1789d932bd0655b.tar.bz2 |
Add `--debug` option to print debug output
Let's keep a way to print WebSocket messages for debugging purposes in
the release build rather than remove the messages completely. Since I've
been struggling with the messages so much it seems like this could be a
useful thing to have.
Diffstat (limited to 'l/src/option.lisp')
-rw-r--r-- | l/src/option.lisp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/l/src/option.lisp b/l/src/option.lisp index 02c89c2..6965b71 100644 --- a/l/src/option.lisp +++ b/l/src/option.lisp @@ -48,4 +48,5 @@ (make-config :socket-url (getf options :socket-url) :reload-current-tab (getf options :reload-current-tab) + :debug-output (getf options :debug) :extension-ids free-args))) |