Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
3.6.2
Description
zooinspect logback config file logback.xml currently use a pattern of this
<pattern>%5p [%t] (%F:%L) - %m%n</pattern>
which not escape the '(' and ')', cause logback to ignore parts after ')'.
according to logback documents, '(' and ')' is used for grouping, need escape by '\' if used as normal char
https://logback.qos.ch/manual/layouts.html#grouping
will create pr update it to
<pattern>%5p [%t] \(%F:%L\) - %m%n</pattern>
Attachments
Issue Links
- links to