Logging stack traces to rsyslog with SysLogAppender

Hi all, I’ve configured the syslog appender successfully to output logs to rsyslog as this is what we use in our dev and prod env. This works well but for one thing. I don’t get stack traces at all. Searching the inter webs I couldn’t find the solution to this. It seems like others have the issue the other way around, which is rather amusing (I guess). My configuration of the syslog appender looks like this: <appender name="syslog" class="ch.qos.logback.classic.net.SyslogAppender"> <syslogHost>${syslog.host:-localhost}</syslogHost> <facility>${syslog.facility:-local0}</facility> <suffixPattern>${syslog.program:-my-program}: %-5level - [%thread] %msg%n</suffixPattern> </appender> I’m using version 1.1.2 of logback classic (behind slf4j 1.7.7). Any hint of where I should look is much appreciated. Thanks, Samuel Le Berrigaud.
participants (1)
-
Samuel Le Berrigaud