Commit a6dda5f9 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

nghttpx: Log rstatus in hex

parent c1f7795d
......@@ -598,8 +598,8 @@ void ConnectionHandler::handle_ocsp_complete() {
auto status = WEXITSTATUS(rstatus);
if (ocsp_.error || !WIFEXITED(rstatus) || status != 0) {
LOG(WARN) << "ocsp query command for " << tls_ctx_data->cert_file
<< " failed: error=" << ocsp_.error << ", rstatus=" << rstatus
<< ", status=" << status;
<< " failed: error=" << ocsp_.error << ", rstatus=" << std::hex
<< rstatus << std::dec << ", status=" << status;
++ocsp_.next;
proceed_next_cert_ocsp();
return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment