Skip to content

Commit 127ac35

Browse files
nilsbehlenCopilot
andauthored
Apply suggestion from @Copilot
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 5ef6bda commit 127ac35

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/privacyidea/AsyncRequestCallable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public void onResponse(@NotNull Call call, @NotNull Response response) throws IO
8484
if (responseBody != null)
8585
{
8686
String s = responseBody.string();
87-
if (!privacyIDEA.logExcludedEndpoints().contains(path))
87+
if (!privacyIDEA.logExcludedEndpoints().contains(path) && !ENDPOINT_AUTH.equals(path))
8888
{
8989
privacyIDEA.log(path + " (" + response.code() + "):\n" + privacyIDEA.parser.formatJson(s));
9090
}

0 commit comments

Comments
 (0)