We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a8bb4a commit 61c0446Copy full SHA for 61c0446
spring-rabbit/src/main/java/org/springframework/amqp/rabbit/logback/AmqpAppender.java
@@ -97,6 +97,7 @@
97
* @author Dominique Villard
98
* @author Nicolas Ristock
99
* @author Eugene Gusev
100
+ * @author Wayne Chu
101
*
102
* @since 1.4
103
*/
@@ -925,6 +926,9 @@ public void run() {
925
926
catch (InterruptedException e) {
927
Thread.currentThread().interrupt();
928
}
929
+ catch (Exception e) {
930
+ addError("Could not send log message, appender is stopped", e);
931
+ }
932
933
934
private void sendOneEncoderPatternMessage(RabbitTemplate rabbitTemplate, String routingKey) {
0 commit comments