Skip to content

Commit 403a407

Browse files
committed
Debgugging
1 parent f22b403 commit 403a407

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/mixeway/scanmanager/integrations/checkmarx/apiclient/CheckmarxApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ private void setGitRepositoryForProject(Scanner scanner, CodeProject codeProject
231231
String passwordString = getPasswordStringForCodeProejct(codeProject);
232232
HttpEntity<CxSetGitRepo> cxSetGitRepoHttpEntity = new HttpEntity<>(new CxSetGitRepo(codeProject, passwordString), codeRequestHelper.getHttpEntity().getHeaders());
233233
ObjectMapper mapper = new ObjectMapper();
234-
log.debug("[Checkmarx] Setting git repo {}", mapper.writeValueAsString(cxSetGitRepoHttpEntity));
234+
log.info("[Checkmarx] Setting git repo {}", mapper.writeValueAsString(cxSetGitRepoHttpEntity));
235235
codeRequestHelper.setHttpEntity(cxSetGitRepoHttpEntity);
236236
try {
237237
int remoteId = (codeProject.getRemoteid() == 0) ? codeProject.getVersionIdAll() : (codeProject.getVersionIdAll() == 0) ? codeProject.getRemoteid() : codeProject.getVersionIdAll();

0 commit comments

Comments
 (0)