Skip to content

Commit 304b99d

Browse files
committed
Remove DEBUG from two exception messages
1 parent b79c261 commit 304b99d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/RabbitMQ.Client/client/impl/MainSession.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public void SetSessionClosing(bool closeIsServerInitiated)
106106
}
107107
else
108108
{
109-
throw new InvalidOperationException("[DEBUG] couldn't enter semaphore");
109+
throw new InvalidOperationException("couldn't enter semaphore");
110110
}
111111
}
112112

@@ -129,7 +129,7 @@ public async Task SetSessionClosingAsync(bool closeIsServerInitiated)
129129
}
130130
else
131131
{
132-
throw new InvalidOperationException("[DEBUG] couldn't async enter semaphore");
132+
throw new InvalidOperationException("couldn't async enter semaphore");
133133
}
134134
}
135135

0 commit comments

Comments
 (0)