nghttpx: Cast uint8_t to uint32_t to display it as numeric value
This commit is contained in:
parent
979feaecc6
commit
c1e1a1be5a
|
@ -1087,7 +1087,7 @@ int on_frame_not_send_callback(nghttp2_session *session,
|
||||||
{
|
{
|
||||||
auto http2session = static_cast<Http2Session*>(user_data);
|
auto http2session = static_cast<Http2Session*>(user_data);
|
||||||
SSLOG(WARNING, http2session) << "Failed to send control frame type="
|
SSLOG(WARNING, http2session) << "Failed to send control frame type="
|
||||||
<< frame->hd.type << ", "
|
<< static_cast<uint32_t>(frame->hd.type)
|
||||||
<< "lib_error_code=" << lib_error_code << ":"
|
<< "lib_error_code=" << lib_error_code << ":"
|
||||||
<< nghttp2_strerror(lib_error_code);
|
<< nghttp2_strerror(lib_error_code);
|
||||||
if(frame->hd.type == NGHTTP2_HEADERS &&
|
if(frame->hd.type == NGHTTP2_HEADERS &&
|
||||||
|
|
Loading…
Reference in New Issue