mirror of
https://github.com/curl/curl.git
synced 2026-08-24 22:43:38 +03:00
lib: convert some debugf()s into traces
Use CURL_TRC_CF() for some useful tracing information instead of DEBUGF(). Closes #14322
This commit is contained in:
parent
a118a6ecdd
commit
02e0151a3a
2 changed files with 9 additions and 19 deletions
|
|
@ -574,10 +574,9 @@ bool Curl_ssl_getsessionid(struct Curl_cfilter *cf,
|
|||
}
|
||||
}
|
||||
|
||||
DEBUGF(infof(data, "%s Session ID in cache for %s %s://%s:%d",
|
||||
no_match? "Did not find": "Found",
|
||||
Curl_ssl_cf_is_proxy(cf) ? "proxy" : "host",
|
||||
cf->conn->handler->scheme, peer->hostname, peer->port));
|
||||
CURL_TRC_CF(data, cf, "%s cached session ID for %s://%s:%d",
|
||||
no_match? "No": "Found",
|
||||
cf->conn->handler->scheme, peer->hostname, peer->port);
|
||||
return no_match;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue