ywkaras commented on code in PR #10819: URL: https://github.com/apache/trafficserver/pull/10819#discussion_r1397856956
########## plugins/experimental/stek_share/stek_share.cc: ########## @@ -422,7 +422,7 @@ stek_updater(void *arg) ::pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, nullptr); ::pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, nullptr); - Dbg(dbg_ctl, "Starting STEK updater thread: %lu", ::pthread_self()); + Dbg(dbg_ctl, "Starting STEK updater thread"); Review Comment: Or: ``` Dbg(dbg_ctl, "Starting STEK updater thread: %lu", static_cast<unsigned long>(::pthread_self())); ``` Hypothetically, you could loose the higher precision bits, but unlikely. -- 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]
