From 5a573a7895f804b5289d539b2fec57e948a9afef Mon Sep 17 00:00:00 2001 From: Gabriele Musco Date: Tue, 25 Jul 2023 19:48:06 +0200 Subject: [PATCH] feat: rectify lighthouse log level env var descriptions --- src/env_var_descriptions.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/env_var_descriptions.rs b/src/env_var_descriptions.rs index b21e275..6611f07 100644 --- a/src/env_var_descriptions.rs +++ b/src/env_var_descriptions.rs @@ -13,7 +13,8 @@ pub static ENV_VAR_DESCRIPTIONS: Map<&str, &str> = phf_map! { "XRT_DEBUG_GUI" => "Set to 1 to enable the Monado debug UI", "XRT_JSON_LOG" => "Set to 1 to enable JSON logging for Monado. This enables better log visualization and log level filtering.", "LH_DRIVER" => "Lighthouse driver; Valid options are: \"vive\" for the default built-in driver, \"survive\" for Libsurvive, \"steamvr\" for the SteamVR based implementation.", - "LH_LOG" => "Lighthouse driver log level. Can be one of: \"trace\", \"debug\", \"info\", \"warn\", \"error\"." + "LH_LOG" => "Lighthouse log level. Can be one of: \"trace\", \"debug\", \"info\", \"warn\", \"error\".", + "LIGHTHOUSE_LOG" => "Lighthouse driver log level. Can be one of: \"trace\", \"debug\", \"info\", \"warn\", \"error\"." }; pub fn env_var_descriptions_as_paragraph() -> String {