java-client icon indicating copy to clipboard operation
java-client copied to clipboard

Mismatched class vs. error message

Open jimshowalter opened this issue 1 year ago • 0 comments

./io/split/engine/experiments/SplitFetcherImp.java: _log.error("RefreshableSplitFetcher failed: " + e.getMessage());

That should be:

./io/split/engine/experiments/SplitFetcherImp.java: _log.error("SplitFetcherImp failed: " + e.getMessage());

If you base the name off the class instead of hardcoding it, it will survive renaming.

jimshowalter avatar Dec 31 '24 22:12 jimshowalter