Skip to content

Commit

Permalink
DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-tikhonov committed Jul 29, 2024
1 parent b98dab5 commit 566a894
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/confdb/confdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -696,8 +696,8 @@ int confdb_init(TALLOC_CTX *mem_ctx,
sss_restore_sssd_user_eid();
umask(old_umask);
if (ret != LDB_SUCCESS) {
DEBUG(SSSDBG_FATAL_FAILURE, "Unable to open config database [%s]\n",
confdb_location);
DEBUG(SSSDBG_FATAL_FAILURE, "Unable to open config database [%s] - %d\n",
confdb_location, ret);
talloc_free(cdb);
return EIO;
}
Expand Down
2 changes: 1 addition & 1 deletion src/tools/sss_cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,7 @@ static errno_t init_context(int argc, const char *argv[],
"--domain/-d parameter.\n", values.domain);
ret = ERR_DOMAIN_NOT_FOUND;
} else {
ERROR("Could not open available domains\n");
ERROR("Could not open available domains: %d\n", ret);
}
DEBUG(SSSDBG_OP_FAILURE,
"Initialization of sysdb connections failed\n");
Expand Down

0 comments on commit 566a894

Please sign in to comment.