Hi,
I am using rabbitmq 3.6.15 and erlang 20.1.5 and I ran into a SSL handshake problem in CertificateVerify message. I want to enable the SSL handshaking logging on the RabbitMQ side by adding these cfg in the rabbitmq.config file but it didn't generate any logs
{log_levels, [{connection, debug}, {queue, debug}]},
{log,
[{file, [{level, debug}]},
{categories,
[{connection,
[{level, debug}]
},
{queue,
[{level, debug}]
}
]
}]
}
Can someone help me on how to enable the SSL debugging/tracing?
Thanks
Patrick