Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Commit

Permalink
Remove debug code.
Browse files Browse the repository at this point in the history
  • Loading branch information
kinyoklion committed May 31, 2024
1 parent 236e96a commit d9d83c1
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ internal class BigSegmentStoreWrapper : IDisposable
private readonly Task<BigSegmentStoreStatus> _initialPoll;

private BigSegmentStoreStatus? _lastStatus;
private int count = 0;

internal event EventHandler<BigSegmentStoreStatus> StatusChanged;

Expand Down Expand Up @@ -127,11 +126,6 @@ internal BigSegmentStoreStatus GetStatus()

private async Task<BigSegmentStoreStatus> PollStoreAndUpdateStatusAsync()
{
count++;
if (count == 2)
{
Console.WriteLine("POTATO");
}
var newStatus = new BigSegmentStoreStatus();
_logger.Debug("Querying Big Segment store metadata");
try
Expand Down

0 comments on commit d9d83c1

Please sign in to comment.