bneradt commented on code in PR #9975:
URL: https://github.com/apache/trafficserver/pull/9975#discussion_r1257401788
##########
plugins/certifier/certifier.cc:
##########
@@ -211,7 +211,7 @@ class SslLRUList
// Remove oldest node if size exceeds limit
if (++size > limit) {
- TSDebug(PLUGIN_NAME, "Removing %s", tail->commonName.c_str());
+ TSDebug(PLUGIN_NAME, "%s: removing '%s'", __func__,
tail->commonName.c_str());
Review Comment:
Ah, OK. I'll leave it up to you then whether you want to keep the `__func__`
here or add TSDebug support for it in a separate PR.
Thanks for looking into that.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]