java - In logback, how can I filter an exception while also replacing characters -
i can use following pattern replace \n \n:
- '%replace(%rex){"\n", "\n"}%nopex'
i can use following pattern filter stack traces:
- %rex{full, com, rx}'
however, when try both, cannot work:
- '%replace(%rex{full, com, rx}){"\n", "\n"}%nopex'
is possible filter stack trace inside replace above?
Comments
Post a Comment