활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
In our AEM 6.3 project, we have a need to add the additional attribute in log message. Basically, we want to customize the message format. So we have created one logback file under src/main/resources/logback.xml. Content of the logfile is as follows
<configuration> <appender name="SampleProject.log" class="ch.qos.logback.core.FileAppender"> <file>SampleProject.log</file> \<append>true</append> <encoder> <pattern>%d %-5level %X{sling.userId:-NA} [%thread] %logger{30} %marker- %msg %n</pattern> <immediateFlush>true</immediateFlush> </encoder> </appender> <logger name="org.wc.project" level="INFO"/> </configuration>
And under Apache Sling Logging Configuration, we have created one log configuration as follows with "same name" as appender name.
org.apache.sling.commons.log.file="SampleProject.log" org.apache.sling.commons.log.level="info" org.apache.sling.commons.log.logger.paatern ="org.wc.project" org.apache.sling.commons.log.pattern="{0,date,dd.MM.yyyy HH:mm:ss.SSS} *{4}* [{2}] {3} {5}"
But the customized message format is now shown in SampleProject.log. Can anybody please provide any pointers for the same.
해결되었습니다! 솔루션으로 이동.
조회 수
답글
좋아요 수
조회 수
답글
좋아요 수
Hi,
I am not sure with Appender you can dump customise log in to project log file or you can specify same log file for appender as well.
You can check Slf4j MDC log option as well if helps
조회 수
답글
좋아요 수
Sling MDC Inserting Filter exposes various request details as part of MDC. But in my case, I need additional variables like Application Name, Application Version etc. MDC is limited to pre-defined variables, so how to add the custom variables in log?
조회 수
답글
좋아요 수
for MDC you can find more info at https://logback.qos.ch/manual/mdc.html
I've never tried customising logs so not sure how you can extend OOTB logging.
조회 수
답글
좋아요 수
Check the Sling documentation for it (Apache Sling :: Logging ).
Jörg
조회 수
답글
좋아요 수