From f3729ddea9642ce4a73e256d648f44dffaffb4d4 Mon Sep 17 00:00:00 2001 From: Chris Beck Date: Fri, 12 Dec 2025 17:02:16 -0700 Subject: [PATCH] update code comment --- signal-gateway-bin/src/syslog/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signal-gateway-bin/src/syslog/mod.rs b/signal-gateway-bin/src/syslog/mod.rs index 06ba5de..63ed597 100644 --- a/signal-gateway-bin/src/syslog/mod.rs +++ b/signal-gateway-bin/src/syslog/mod.rs @@ -25,7 +25,7 @@ pub struct SyslogConfig { /// Structured data ID for tracing metadata (module, file, line) in syslog messages. #[conf(long, env, default_value = "tracing-meta@64700")] pub sd_id: String, - /// If true, use CR as the message delimiter for non-transparent framing instead of LF. + /// If true, use CR (\r) as the message delimiter for non-transparent framing instead of LF (\n). /// See RFC 6587 (Syslog over TCP) section 3.4.2. /// Default delimiters: NUL or LF. With this flag: NUL or CR. #[conf(long, env)]