Skip to content

Commit

Permalink
Remove DEBUG from two exception messages
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebakken committed May 13, 2024
1 parent b79c261 commit 304b99d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/RabbitMQ.Client/client/impl/MainSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void SetSessionClosing(bool closeIsServerInitiated)
}
else
{
throw new InvalidOperationException("[DEBUG] couldn't enter semaphore");
throw new InvalidOperationException("couldn't enter semaphore");
}
}

Expand All @@ -129,7 +129,7 @@ public async Task SetSessionClosingAsync(bool closeIsServerInitiated)
}
else
{
throw new InvalidOperationException("[DEBUG] couldn't async enter semaphore");
throw new InvalidOperationException("couldn't async enter semaphore");
}
}

Expand Down

0 comments on commit 304b99d

Please sign in to comment.