Hi !
In case of handling some credentials as the following with mybatis,
- PhoneNumber
- Address
- etc ...
How to exclude (or hide, protected) in log of these ?
now
```
2021-06-25 10:41:10.629 DEBUG 12807 --- [nio-8081-exec-6] c.f.k.i.a.ApplicationMapper.register : ==> Preparing: INSERT INTO applications( application_id, first_name, last_name, birthday) VALUES ( ?, ?, ?, ? )
2021-06-25 10:41:10.639 DEBUG 12807 --- [nio-8081-exec-6] c.f.k.i.a.ApplicationMapper.register : ==> Parameters: 331f10be-50d1-441b-8adf-1cbb4c5401f3(String), John(String), Doe(String), 19950104(String)
```
expected
```
2021-06-25 10:41:10.629 DEBUG 12807 --- [nio-8081-exec-6] c.f.k.i.a.ApplicationMapper.register : ==> Preparing: INSERT INTO applications( application_id, first_name, last_name, birthday) VALUES ( ?, ?, ?, ? )
2021-06-25 10:41:10.639 DEBUG 12807 --- [nio-8081-exec-6] c.f.k.i.a.ApplicationMapper.register : ==> Parameters: 331f10be-50d1-441b-8adf-1cbb4c5401f3(String)[PROTECTED](String), [PROTECTED](String), [PROTECTED](String)
```
Are there some config to resolve this ?