I want to configure a multi-line processor using PLG stack (Promtail, Loki & Grafana) with Quarkus services. I am following this link to do so, but I am unable to inject the zero-width-character in my quarkus-app/application.properties file: it either print it as is or replace it with a ?. Here is what I tried so far :
quarkus.log.console.format=U+200B%d{HH:mm:ss} %-5p traceId=%X{traceId}, parentId=%X{parentId}, spanId=%X{spanId}, sampled=%X{sampled} [%c{2.}] (%t) %s%e%n
quarkus.log.console.format=​%d{HH:mm:ss} %-5p traceId=%X{traceId}, parentId=%X{parentId}, spanId=%X{spanId}, sampled=%X{sampled} [%c{2.}] (%t) %s%e%n
Any ideas ?