Skip to content

Commit

Permalink
fix(triggers): Remove confusing/unnecessary error log (#664)
Browse files Browse the repository at this point in the history
  • Loading branch information
dragon3 authored and emjburns committed Sep 27, 2019
1 parent f44d779 commit 9256032
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,6 @@ protected List<Artifact> resolveArtifacts(List<Map<String, Object>> manualTrigge
if (Strings.isNullOrEmpty(artifact.getName())
|| Strings.isNullOrEmpty(artifact.getVersion())
|| Strings.isNullOrEmpty(artifact.getLocation())) {
log.error(
"Artifact does not have enough information to fetch. "
+ "Artifact must contain name, version, and location.");
resolvedArtifacts.add(artifact);
} else {
try {
Expand Down

0 comments on commit 9256032

Please sign in to comment.