I am building a project for deploying applications to servers using python scripts. I also use decorator to log inputs and outputs of functions. Since the logs will be available as Jenkins output, it is not an option to show passwords.
I am looking for a way to annotate/tag parameters so that decorator does not show them as plain text. If this is not possible, I am looking for alternatives.
I can make sure that I do not pass/return passwords in annotated functions, but considering future contributions from other developers I want to do this in a more easier to maintain way.