Skip to content

Commit 351a493

Browse files
fix: set log level to debug (#183)
1 parent 2ce5934 commit 351a493

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extension/java-client-operate/src/main/java/io/camunda/operate/auth/SimpleAuthentication.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ private SimpleAuthToken retrieveToken() {
7373
"Unable to authenticate due to missing Set-Cookie OPERATE-SESSION");
7474
}
7575
if (simpleAuthToken.csrfToken() == null) {
76-
LOG.info("No CSRF token found");
76+
LOG.debug("No CSRF token found");
7777
}
7878
if (simpleAuthToken.csrfCookie() == null) {
79-
LOG.info("No CSRF cookie found");
79+
LOG.debug("No CSRF cookie found");
8080
}
8181
return simpleAuthToken;
8282
} catch (Exception e) {

0 commit comments

Comments
 (0)