Skip to content

Commit 6477509

Browse files
authored
Fix log level
1 parent c2c7679 commit 6477509

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/cd/go/authorization/github/executors/ValidateUserRequestExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public GoPluginApiResponse execute() throws Exception {
4747
LOG.error(format("[Is Valid User] User %s does not exist in GitHub.", request.getUsername()));
4848
return DefaultGoPluginApiResponse.error(String.format("User '%s' does not exist in GitHub.", request.getUsername()));
4949
} else {
50-
LOG.info(format("[Is Valid User] %s is valid user.", request.getUsername()));
50+
LOG.debug(format("[Is Valid User] %s is valid user.", request.getUsername()));
5151
return DefaultGoPluginApiResponse.success("");
5252
}
5353
}

0 commit comments

Comments
 (0)