java-client
java-client copied to clipboard
Mismatched class vs. error message
./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.