Skip to content

Commit dfc910a

Browse files
authored
Log missing admin access on INFO level (#299)
1 parent 193ebd2 commit dfc910a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/jenkinsci/plugins/github/webhook/WebhookManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ private GHRepository repoWithWebhookAccess(GitHubRepositoryName name) {
174174
com.google.common.base.Optional<GHRepository> repoWithAdminAccess = reposAllowedtoManageWebhooks
175175
.firstMatch(withAdminAccess());
176176
if (!repoWithAdminAccess.isPresent()) {
177-
LOGGER.debug("None of the github repos configured have admin access for: {}", name);
177+
LOGGER.info("None of the github repos configured have admin access for: {}", name);
178178
return null;
179179
}
180180
GHRepository repo = repoWithAdminAccess.get();

0 commit comments

Comments
 (0)