0

I want to have RabbitMQ log entry to single line instead of multiline. How could I do that?

I have set log.file.formatter.single_line = true in rabbitmq.conf, but then RabbitMQ fails to start. In addition - if it would be possible to set in the runtime, without restarting the server - that woud be great.

Using 3.10.5

Martynas Saint
  • 1,221
  • 7
  • 15

1 Answers1

1

but then RabbitMQ fails to start

Have you checked the log files for the error?

https://github.com/rabbitmq/rabbitmq-server/search?q=single_line

The correct setting is on, not true (source code)

if it would be possible to set in the runtime, without restarting the server

There's probably a very convoluted way to do that but really it's just easier to change the setting and restart RabbitMQ.


NOTE: the RabbitMQ team monitors the rabbitmq-users mailing list and only sometimes answers questions on StackOverflow.

Luke Bakken
  • 211
  • 2
  • 5