Skip to content

Commit dee1e04

Browse files
authored
fix: add missing CLI option to argv parser (#742)
help message and types for the request logging option were updated, but the argument parser option wasn't.
1 parent aa4a827 commit dee1e04

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

source/utilities/cli.ts

+2
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ const options = {
159159
'--ssl-cert': String,
160160
'--ssl-key': String,
161161
'--ssl-pass': String,
162+
'--no-request-logging': Boolean,
162163
// A list of aliases for the above options.
163164
'-h': '--help',
164165
'-v': '--version',
@@ -170,6 +171,7 @@ const options = {
170171
'-u': '--no-compression',
171172
'-S': '--symlinks',
172173
'-C': '--cors',
174+
'-L': '--no-request-logging',
173175

174176
// The `-p` option is deprecated and is kept only for backwards-compatibility.
175177
'-p': '--listen',

0 commit comments

Comments
 (0)