fix: Obfuscate the question_name field

This commit is contained in:
Philipp Kern 2024-05-05 14:09:49 +02:00
parent 4ebe1ef21a
commit 9596a6e792
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ func LogEntryFields(entry *LogEntry) logrus.Fields {
"response_reason": entry.ResponseReason,
"response_type": entry.ResponseType,
"response_code": entry.ResponseCode,
"question_name": entry.QuestionName,
"question_name": util.Obfuscate(entry.QuestionName),
"question_type": entry.QuestionType,
"answer": entry.Answer,
"duration_ms": entry.DurationMs,