Skip to content

Commit

Permalink
IPA: verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-tikhonov committed Jan 28, 2025
1 parent f179ff4 commit 46ecc56
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/providers/ipa/ipa_subdomains_id.c
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,8 @@ errno_t get_object_from_cache(TALLOC_CTX *mem_ctx,
goto done;
}
} else {
DEBUG(SSSDBG_CRIT_FAILURE, "Unexpected filter type.\n");
DEBUG(SSSDBG_CRIT_FAILURE, "Unexpected filter type: %u\n",
ar->filter_type);
ret = EINVAL;
goto done;
}
Expand Down
3 changes: 2 additions & 1 deletion src/providers/ipa/ipa_views.c
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,8 @@ static errno_t dp_id_data_to_override_filter(TALLOC_CTX *mem_ctx,
break;

default:
DEBUG(SSSDBG_OP_FAILURE, "Invalid sub-domain filter type.\n");
DEBUG(SSSDBG_OP_FAILURE, "Invalid sub-domain filter type: %u\n",
ar->filter_type);
return EINVAL;
}

Expand Down

0 comments on commit 46ecc56

Please sign in to comment.