iamgd67 opened a new pull request #1814:
URL: https://github.com/apache/zookeeper/pull/1814


   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  
   
   this pr update it to (add '\' to escape)
   `<pattern>%5p [%t] \(%F:%L\) - %m%n</pattern> `


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@zookeeper.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to