Skip to content

Commit 3e1519c

Browse files
fix: set log level to debug (#183) (#184)
(cherry picked from commit 351a493)
1 parent 90a402c commit 3e1519c

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)