Skip to content

Commit

Permalink
Reduce severity of warning for failed auth config lookups (fixes #1399)…
Browse files Browse the repository at this point in the history
… (#3353)

Co-authored-by: Prateek Bokade <prateekb@hotstar.com>
Co-authored-by: Richard North <rich.north@gmail.com>
  • Loading branch information
3 people committed Oct 29, 2020
1 parent a4ea017 commit e97fd3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ private Optional<AuthConfig> lookupUncachedAuthConfig(String registryName, Docke
return Optional.of(existingAuthConfig);
}
} catch (Exception e) {
log.warn("Failure when attempting to lookup auth config (dockerImageName: {}, configFile: {}. Falling back to docker-java default behaviour. Exception message: {}",
log.info("Failure when attempting to lookup auth config. Please ignore if you don't have images in an authenticated registry. Details: (dockerImageName: {}, configFile: {}. Falling back to docker-java default behaviour. Exception message: {}",
dockerImageName,
configFile,
e.getMessage());
Expand Down

0 comments on commit e97fd3d

Please sign in to comment.