skip to Main Content

Unreadable thread name in logs with Logback – Telegram API

I run Spring Boot application and have following logback-spring.xml file: <?xml version="1.0" encoding="UTF-8"?> <configuration> <property name="LOGS" value="./logs" /> <appender name="Console" class="ch.qos.logback.core.ConsoleAppender"> <layout class="ch.qos.logback.classic.PatternLayout"> <Pattern> %black(%d{ISO8601}) %highlight(%-5level) [%blue(%t)] %yellow(%C{1.}): %msg%n%throwable </Pattern> </layout> </appender> <appender name="RollingFile" class="ch.qos.logback.core.rolling.RollingFileAppender"> <file>${LOGS}/logger.log</file> <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder"> <charset>UTF-8</charset> <Pattern>%d…

VIEW QUESTION

Docker daemon fails to process logs – Debian

Docker daemon is unable to parse the json log and throws an unexpected EOF error. We are investigating the root cause of the issue. Environment: Debian 4.9.189-3+deb9u2 Docker engine 19.03.5 Docker daemon log: Apr 29 14:31:05 Prod-IS dockerd[30810]: time="2020-04-29T14:31:05.070677515+02:00" level=warning…

VIEW QUESTION
Back To Top
Search