Skip to content

Commit c8b18de

Browse files
committed
Remove use of C# 6 string interpolation
1 parent cd14637 commit c8b18de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/HangFire.Azure.ServiceBusQueue/ServiceBusManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ private static void CreateQueueIfNotExists(string prefixedQueue, NamespaceManage
6161
{
6262
if (options.CheckAndCreateQueues == false)
6363
{
64-
Logger.Info($"Not checking for the existence of the queue {prefixedQueue}");
64+
Logger.InfoFormat("Not checking for the existence of the queue {0}", prefixedQueue);
6565

6666
return;
6767
}

0 commit comments

Comments
 (0)