-
Test case: Configure GELF TCP appender with a port where no graylog input listens. Graylog then adds statuses to Logback's status manager but without explicitly listening to them nothing is visible in the console output. Can something be enabled in configuration to get a console output if TCP/UDP connection cannot be established? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In order to see problems/errors within the log system itself, you can use logbacks Status data feature. In the simplest form you add the |
Beta Was this translation helpful? Give feedback.
In order to see problems/errors within the log system itself, you can use logbacks Status data feature. In the simplest form you add the
debug
attribute to your<configuration>
root element of your logback configuration:<configuration debug="true">
. That causes internal errors to be logged to the console.