Skip to content

Commit

Permalink
use status info for logging unsupported queue types when creating queue
Browse files Browse the repository at this point in the history
  • Loading branch information
kickster97 committed Sep 30, 2024
1 parent dd1f5cd commit 5bac463
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lavinmq/queue/queue_factory.cr
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5bac463

Please sign in to comment.