From: Jonathan McDowell Date: Mon, 8 Aug 2016 22:04:14 +0000 (+0100) Subject: Add logging of the HKP base URL for the HKP forwarding backend X-Git-Tag: onak-0.5.0~8 X-Git-Url: http://the.earth.li/gitweb/?p=onak.git;a=commitdiff_plain;h=cc7c85b31ad99e8ec2b545c333cbcc890a97e9e7 Add logging of the HKP base URL for the HKP forwarding backend --- diff --git a/keydb_hkp.c b/keydb_hkp.c index 6707ae6..65b6bdc 100644 --- a/keydb_hkp.c +++ b/keydb_hkp.c @@ -378,6 +378,8 @@ struct onak_dbctx *keydb_hkp_init(struct onak_db_config *dbcfg, bool readonly) if (!hkp_parse_url(privctx, dbcfg->location)) { exit(EXIT_FAILURE); } + logthing(LOGTHING_INFO, "Using %s as HKP forwarding URL.", + privctx->hkpbase); curl_global_init(CURL_GLOBAL_DEFAULT); privctx->curl = curl_easy_init(); if (privctx->curl == NULL) {