From f50d1138de34d0ddbc1cf4df0c050be332ee8d3d Mon Sep 17 00:00:00 2001 From: Adomas Bekeras Date: Tue, 4 Nov 2025 10:39:17 +0100 Subject: [PATCH] Fix grammar and typos in M-LOG-STRUCTURED.md --- src/guidelines/universal/M-LOG-STRUCTURED.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guidelines/universal/M-LOG-STRUCTURED.md b/src/guidelines/universal/M-LOG-STRUCTURED.md index ce1efde..c0524a0 100644 --- a/src/guidelines/universal/M-LOG-STRUCTURED.md +++ b/src/guidelines/universal/M-LOG-STRUCTURED.md @@ -31,7 +31,7 @@ event!( ); ``` -> **Note**: Use `{{property}}` the syntax in message templates which preserves the literal text +> **Note**: Use the `{{property}}` syntax in message templates which preserves the literal text > while escaping Rust's format syntax. String formatting is deferred until logs are viewed. ### Name Your Events @@ -106,7 +106,7 @@ event!( ); ``` -Sensitive data include user email, file paths revealing user identity, filenames containing secrets or tokens, +Sensitive data includes email addresses, file paths revealing user identity, filenames containing secrets or tokens, file contents with PII, temporary file paths with session IDs and more. Consider using the [`data_privacy`](https://crates.io/crates/data_privacy) crate for consistent redaction. ### Further Reading