Skip to content

Commit

Permalink
chore: Log unrecognized code token as an error
Browse files Browse the repository at this point in the history
Bug: N/A
Change-Id: Ib5211da693454871dbfbb2203a428ce0090700f1
GitOrigin-RevId: e446b0964d2fde95327eed0171a889859174204e
  • Loading branch information
Privacy Sandbox Team authored and copybara-github committed Nov 7, 2024
1 parent ae8e59c commit eae06f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/roma/byob/dispatcher/dispatcher.cc
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ void Dispatcher::AcceptorImpl() {
absl::MutexLock lock(&mu_);
const auto it = code_token_to_fds_and_tokens_.find(*data);
if (it == code_token_to_fds_and_tokens_.end()) {
LOG(INFO) << "Unrecognized code token.";
LOG(ERROR) << "Unrecognized code token.";
::close(fd);
continue;
}
Expand Down

0 comments on commit eae06f7

Please sign in to comment.