From 80ed6c2205f42cdf5dfd2b054e00c80b758ec737 Mon Sep 17 00:00:00 2001 From: Chris Beck Date: Tue, 16 Dec 2025 12:02:38 -0700 Subject: [PATCH] add doc-string for remove-path-prefixes --- signal-gateway-bin/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/signal-gateway-bin/src/main.rs b/signal-gateway-bin/src/main.rs index b6cc178..b536fc3 100644 --- a/signal-gateway-bin/src/main.rs +++ b/signal-gateway-bin/src/main.rs @@ -53,6 +53,7 @@ pub struct Config { claude: Option, #[conf(flatten, serde(flatten))] gateway: GatewayConfig, + /// When ingesting logs, if the file begins with any of these glob prefixes, remove the glob prefix #[conf(long, env, value_parser = serde_json::from_str, default_value = "[\"/home/*/\", \".cargo/registry/src/*/\"]")] remove_path_prefixes: Vec, }