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
Default log dir and files log/access.log and log/error.log are created even if different paths are provided via --access-log and --error-log options, leading to permission concerns.
$ ls
duckling-example-exe
$ ./duckling-example-exe --access-log=./a.log --error-log=./e.log
no port specified, defaulting to port 8000
Listening on http://0.0.0.0:8000
^C
Shutting down..
$ ls -R
.:
a.log duckling-example-exe e.log log
./log:
access.log error.log
Here both default and user-provided files are created.
The text was updated successfully, but these errors were encountered:
Default log dir and files
log/access.log
andlog/error.log
are created even if different paths are provided via--access-log
and--error-log
options, leading to permission concerns.This relates to #377, where logfile creation was disabled in case of
--no-access-log
and--no-error-log
.Reproducable on 7520daa:
Here both default and user-provided files are created.
The text was updated successfully, but these errors were encountered: