Skip to content

Commit

Permalink
chore: TgResultCount: Added toString()
Browse files Browse the repository at this point in the history
  • Loading branch information
hishidama committed Aug 6, 2024
1 parent dda4130 commit d38efd6
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,9 @@ public long getCount(CounterType lowCounterType) {
var counterMap = getLowCounterMap();
return counterMap.getOrDefault(lowCounterType, 0L);
}

@Override
public String toString() {
return getClass().getSimpleName() + getLowCounterMap();
}
}

0 comments on commit d38efd6

Please sign in to comment.