Updated documentation to specify which debug messages are printed to stdout and stderr.

This commit is contained in:
Jeromy Streets 2019-04-11 10:46:43 -07:00
parent 6c5615ba44
commit 222f24f518
2 changed files with 5 additions and 3 deletions

View File

@ -15,7 +15,8 @@ Default values are shown with the associated environment variable.
```bash
# Enable debugging for troubleshooting. If set to 'true' this prints extra
# information during execution.
# information during execution. IMPORTANT NOTE: The configuration summary is
# printed to stdout while logs generated during execution are printed to stderr.
DEBUG=false
# Optional Hostname for binding. Leave black to accept any incoming HTTP request

View File

@ -35,8 +35,9 @@ DEPENDENCIES
ENVIRONMENT VARIABLES
DEBUG
When set to 'true' enables additional logging, including the
configuration used and an access log for each request. Default value is
'false'.
configuration used and an access log for each request. IMPORTANT NOTE:
The configuration summary is printed to stdout while logs generated
during execution are printed to stderr. Default value is 'false'.
FOLDER
The path to the folder containing the contents to be served over
HTTP(s). If not supplied, defaults to '/web' (for Docker reasons).