Skip to content

Commit

Permalink
Print worker id as integer instead of char
Browse files Browse the repository at this point in the history
Reviewed By: kwaugh

Differential Revision: D47274708

fbshipit-source-id: 589d6b1aa48ccf87b0f5a2dccbc5248f99f8c6ce
  • Loading branch information
Luca Niccolini authored and facebook-github-bot committed Jul 7, 2023
1 parent c948f9f commit d7581bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxygen/lib/services/RequestWorkerThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ void RequestWorkerThread::forceStop() {
}

void RequestWorkerThread::cleanup() {
LOG(INFO) << "Worker " << getWorkerId() << " in cleanup";
LOG(INFO) << "Worker " << unsigned(getWorkerId()) << " in cleanup";
if (!forceStopped_.load()) {
LOG(INFO) << "Looping to finish pending work";
evb_->loop();
Expand Down

0 comments on commit d7581bb

Please sign in to comment.