mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
refine the log verbose
This commit is contained in:
parent
2d229b09be
commit
5e9ff71740
1 changed files with 4 additions and 4 deletions
|
@ -1279,15 +1279,15 @@ int SrsProtocol::recv_interlaced_message(SrsCommonMessage** pmsg)
|
||||||
|
|
||||||
// not got an entire RTMP message, try next chunk.
|
// not got an entire RTMP message, try next chunk.
|
||||||
if (!msg) {
|
if (!msg) {
|
||||||
srs_verbose("get partial message success. chunk_payload_size=%d, size=%d, message(type=%d, size=%d, time=%"PRId64", sid=%d)",
|
srs_verbose("get partial message success. size=%d, message(type=%d, size=%d, time=%"PRId64", sid=%d)",
|
||||||
payload_size, (msg? msg->size : (chunk->msg? chunk->msg->size : 0)), chunk->header.message_type, chunk->header.payload_length,
|
(msg? msg->size : (chunk->msg? chunk->msg->size : 0)), chunk->header.message_type, chunk->header.payload_length,
|
||||||
chunk->header.timestamp, chunk->header.stream_id);
|
chunk->header.timestamp, chunk->header.stream_id);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
*pmsg = msg;
|
*pmsg = msg;
|
||||||
srs_info("get entire message success. chunk_payload_size=%d, size=%d, message(type=%d, size=%d, time=%"PRId64", sid=%d)",
|
srs_info("get entire message success. size=%d, message(type=%d, size=%d, time=%"PRId64", sid=%d)",
|
||||||
payload_size, (msg? msg->size : (chunk->msg? chunk->msg->size : 0)), chunk->header.message_type, chunk->header.payload_length,
|
(msg? msg->size : (chunk->msg? chunk->msg->size : 0)), chunk->header.message_type, chunk->header.payload_length,
|
||||||
chunk->header.timestamp, chunk->header.stream_id);
|
chunk->header.timestamp, chunk->header.stream_id);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in a new issue