Rename <censored_path> to <user_home>

This commit is contained in:
Jaime van Kessel 2019-12-16 11:12:19 +01:00
parent 7c9d7a3aef
commit 62ea766880
No known key found for this signature in database
GPG key ID: 3710727397403C91

View file

@ -41,7 +41,7 @@ class SentryLogger(LogOutput):
@staticmethod
def _pruneSensitiveData(message):
if home_dir in message:
message = message.replace(home_dir, "<censored_path>")
message = message.replace(home_dir, "<user_home>")
return message
@staticmethod