Skip to content

Commit

Permalink
Remove a extra log
Browse files Browse the repository at this point in the history
  • Loading branch information
nmayorsplit committed Aug 31, 2023
1 parent eaa1609 commit 6806d91
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ public SplitChange fetch(long since, FetchOptions options) {
throw new IllegalStateException(String.format("Problem fetching splitChanges using file named %s: %s",
i.getFileName(), i.getMessage()), i);
} catch (Exception e) {
_log.warn(String.format("Problem to fetch split change using a file"), e);
throw new IllegalStateException("Problem fetching splitChanges: " + e.getMessage(), e);
throw new IllegalStateException("Problem fetching splitChanges using a yaml file: " + e.getMessage(), e);
}
}
}

0 comments on commit 6806d91

Please sign in to comment.