From 77f3392fa265e49e04e4b2977854fee128985fb3 Mon Sep 17 00:00:00 2001 From: Paul Flynn Date: Mon, 1 Jul 2024 22:07:36 -0400 Subject: [PATCH] Add additional environment variables to README Two new environment variables (ENABLE_TIMING_LOGS and RUST_LOG) have been added to the README.md instructions. These were inserted to refine the project debug process by providing more detailed log information and enabling timing logs. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index aa1fc75..d45f60f 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,8 @@ export PORT=8443 export TLS_CERT_PATH=/path/to/fullchain.pem export TLS_KEY_PATH=/path/to/privkey.pem export KAS_KEY_PATH=/path/to/recipient_private_key.pem +export ENABLE_TIMING_LOGS=true +export RUST_LOG=info ``` (Optional) Set the environment variables if you want to override the defaults.