Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 29ab11d

Browse files
committed
Update docs to reflect move from std-logger to env_logger
1 parent ce41cca commit 29ab11d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

documentation/src/installation/client.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ As with the server component **pullconf** is configured via environment variable
4747
| PULLCONF_SERVER | The socket address of the **pullconfd** server that **pullconf** should connect to, e.g. `pullconf.local` | yes | |
4848
| PULLCONF_API_KEY | The API key that is used by the client to authenticate to the server. This should be a long, random string. A suitable string can be generated by running `openssl rand -base64 32` | yes | |
4949
| PULLCONF_CA_DIR | A directory containing certificates in PEM format that are loaded into the HTTO client truststore. This is useful when the TLS certificate of the server is signed by a custom, internal certificate authority instead of a public one. | no | |
50-
| PULLCONF_LOG_FORMAT | Determines the output format of structured logs. Either `logfmt` or `json` | no | `logfmt` |
51-
| LOG_LEVEL | This variable is read by the underlying logging library. Check their [documentation](https://docs.rs/std-logger/latest/std_logger/index.html#setting-severity) for a complete overview of valid values. | no | `info` |
50+
| RUST_LOG | This variable is read by the underlying logging library. Check their [documentation](https://docs.rs/env_logger/latest/env_logger/index.html#enabling-logging) for a complete overview of valid values. | no | `info` |
5251

5352
Once `pullconf.timer` triggers `pullconf.service` the updated values from `/etc/pullconf/environment` will be used. To run the service unit out-of-schedule simply run:
5453

documentation/src/installation/server.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ If this is your first installation the unit will likely be in the "failed" state
2929
| PULLCONF_TLS_PRIVATE_KEY | Path to the corresponding private key in PEM format. | yes | `/etc/pullconfd/tls/server.key` |
3030
| PULLCONF_RESOURCE_DIR | Directory containing StrictYAML files that define clients, groups, and their resources. Only files ending with `.yaml` or `.yml` will be parsed. Subdirectories may be nested up to ten levels. | yes | `/etc/pullconfd/conf.d` |
3131
| PULLCONF_ASSET_DIR | Directory containing static file assets. This directory is served by the web server to enable clients to download file contents. Subdirectories may be arbitrarily nested. | yes | `/etc/pullconfd/assets` |
32-
| PULLCONF_LOG_FORMAT | Determines the output format of structured logs. Either `logfmt` or `json` | no | `logfmt` |
33-
| LOG_LEVEL | This variable is read by the underlying logging library. Check their [documentation](https://docs.rs/std-logger/latest/std_logger/index.html#setting-severity) for a complete overview of valid values. | no | `info` |
32+
| RUST_LOG | This variable is read by the underlying logging library. Check their [documentation](https://docs.rs/env_logger/latest/env_logger/index.html#enabling-logging) for a complete overview of valid values. | no | `info` |
3433

3534
After adding or changing environment variables you need to restart the unit:
3635

0 commit comments

Comments
 (0)