···228228229229_Note: Your PDS will need to be restarted with those variables. This varies depending on your setup. If you followed this installation guide, run `systemctl restart pds`. You might need to restart the server or recreate the container, depending on what you are using._
230230231231+### Logging
232232+233233+By default, logs from the PDS are printed to `stdout` and end up in Docker's log. You can browse them by running:
234234+235235+```
236236+[sudo] docker logs pds
237237+```
238238+239239+Note: these logs are not persisted, so they will be lost after server reboot.
240240+241241+Alternatively, you can configure the logs to be printed to a file by setting `LOG_DESTINATION`:
242242+243243+```
244244+LOG_DESTINATION=/pds/pds.log
245245+```
246246+247247+You can also change the minimum level of logs to be printed (default: `info`):
248248+249249+```
250250+LOG_LEVEL=debug
251251+```
252252+231253### Updating your PDS
232254233255It is recommended that you keep your PDS up to date with new versions, otherwise things may break. You can use the `pdsadmin` tool to update your PDS.