From 5bac463ce44e70fd5a3687d4e627f04abd9702e3 Mon Sep 17 00:00:00 2001 From: Christina Date: Mon, 30 Sep 2024 09:05:15 +0200 Subject: [PATCH] use status info for logging unsupported queue types when creating queue --- src/lavinmq/queue/queue_factory.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lavinmq/queue/queue_factory.cr b/src/lavinmq/queue/queue_factory.cr index 44a1c6de4..971cade0d 100644 --- a/src/lavinmq/queue/queue_factory.cr +++ b/src/lavinmq/queue/queue_factory.cr @@ -57,7 +57,7 @@ module LavinMQ private def self.warn_if_unsupported_queue_type(frame) if frame.arguments["x-queue-type"]? - Log.warn { "The queue type #{frame.arguments["x-queue-type"]} is not supported by LavinMQ and will be changed to the default queue type" } + Log.info { "The queue type #{frame.arguments["x-queue-type"]} is not supported by LavinMQ and will be changed to the default queue type" } end end end