CONTRIBUTING: document GO_DISCOVERY_LOG_LEVEL

Change-Id: I8bc7a6a7eeeaf1e94507493ff52606f54aa7cceb
Reviewed-on: https://go-review.googlesource.com/c/pkgsite/+/247197
Reviewed-by: Julie Qiu <julie@golang.org>
This commit is contained in:
Amarjeet Anand 2020-08-06 20:32:33 +05:30 коммит произвёл Julie Qiu
Родитель 3ad2709a84
Коммит 77ada3988f
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -46,6 +46,16 @@ There are two ways to run pkg.go.dev locally.
See [doc/frontend.md](doc/frontend.md) for details.
### Changing the log level
You can use the `GO_DISCOVERY_LOG_LEVEL` environment variable to set the log level. All logs below the level that is set will not be printed.
For example, setting `GO_DISCOVERY_LOG_LEVEL=info` will not print `Debug` logs, but it will print `Info`, `Error` and `Fatal` logs.
The supported levels are `Debug`, `Info`, `Error` and `Fatal`.
By default, logs for all levels will be printed.
## Before sending a CL for review
1. Run `./all.bash` and fix all resulting errors. See