From a178e6193b44811e436e567e19ea760fc7058546 Mon Sep 17 00:00:00 2001 From: Steve Dogiakos Date: Mon, 9 Mar 2026 20:19:28 -0600 Subject: [PATCH] =?UTF-8?q?Keep=20PII=20logging=20as=20intentional=20?= =?UTF-8?q?=E2=80=94=20close=20#8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Logging guest name and location is appropriate here: visitors knowingly submit this info for a newsletter, and the log is useful for confirming submissions and debugging on an intranet-only kiosk. --- app.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app.py b/app.py index 6dd7682..fbcb0cc 100644 --- a/app.py +++ b/app.py @@ -115,7 +115,6 @@ def index(): ) conn.commit() conn.close() - # TODO: Logging full name and location is PII. Consider omitting or hashing before logging. logger.info("Added guest: %s %s from %s", first_name, last_name, location) return redirect(url_for('index'))