Merge branch '1.5.x'

This commit is contained in:
Stephane Nicoll 2017-10-29 14:04:38 +01:00
commit 813a6966ef

View File

@ -81,9 +81,12 @@ public class Sanitizer {
* @return the potentially sanitized value
*/
public Object sanitize(String key, Object value) {
if (value == null) {
return null;
}
for (Pattern pattern : this.keysToSanitize) {
if (pattern.matcher(key).matches()) {
return (value == null ? null : "******");
return "******";
}
}
return value;