From 527580a34d4781afad2f640baa3c0213d9b1ea8b Mon Sep 17 00:00:00 2001 From: Thomas Hilzendegen Date: Tue, 14 May 2024 17:24:15 +0200 Subject: [PATCH] fix(server): add missing closing brace --- .../ModelFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Thinktecture.Relay.Server.Protocols.RabbitMq/ModelFactory.cs b/src/Thinktecture.Relay.Server.Protocols.RabbitMq/ModelFactory.cs index ce3d94b75..cc00dcc4f 100644 --- a/src/Thinktecture.Relay.Server.Protocols.RabbitMq/ModelFactory.cs +++ b/src/Thinktecture.Relay.Server.Protocols.RabbitMq/ModelFactory.cs @@ -37,7 +37,7 @@ public ModelFactory(ILogger> logger, IConnection conn } connection.ConnectionShutdown += (_, args) - => _logger.LogDebug(25101, "Connection closed ({ShutdownReason}", args.ReplyText); + => _logger.LogDebug(25101, "Connection closed ({ShutdownReason})", args.ReplyText); } ///