Add more info to debug key display

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2011-08-25 10:29:02 -05:00
parent de43d00db0
commit c7e4005e5c
1 changed files with 2 additions and 1 deletions

View File

@ -337,7 +337,8 @@ int _alpm_gpgme_checksig(alpm_handle_t *handle, const char *path,
result->key.email = key->uids->email;
result->key.created = key->subkeys->timestamp;
result->key.expires = key->subkeys->expires;
_alpm_log(handle, ALPM_LOG_DEBUG, "key user: %s\n", key->uids->uid);
_alpm_log(handle, ALPM_LOG_DEBUG, "key: %s, %s, owner_trust %s\n",
key->subkeys->fpr, key->uids->uid, string_validity(key->owner_trust));
}
}