jpeach commented on code in PR #9975:
URL: https://github.com/apache/trafficserver/pull/9975#discussion_r1257398177
##########
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:
Yeh `TSDebug` doesn't know the source location. It wouldn't be too hard to
fix that though.
```C
tsapi void TSDebug(const char *tag, const char *format_str, ...)
TS_PRINTFLIKE(2, 3);
```
--
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]