We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2c7679 commit 6477509Copy full SHA for 6477509
src/main/java/cd/go/authorization/github/executors/ValidateUserRequestExecutor.java
@@ -47,7 +47,7 @@ public GoPluginApiResponse execute() throws Exception {
47
LOG.error(format("[Is Valid User] User %s does not exist in GitHub.", request.getUsername()));
48
return DefaultGoPluginApiResponse.error(String.format("User '%s' does not exist in GitHub.", request.getUsername()));
49
} else {
50
- LOG.info(format("[Is Valid User] %s is valid user.", request.getUsername()));
+ LOG.debug(format("[Is Valid User] %s is valid user.", request.getUsername()));
51
return DefaultGoPluginApiResponse.success("");
52
}
53
0 commit comments