winlin

refine log messages.

@@ -54,13 +54,13 @@ git clone https://code.csdn.net/winlinvip/srs-csdn.git @@ -54,13 +54,13 @@ git clone https://code.csdn.net/winlinvip/srs-csdn.git
54 <tr> 54 <tr>
55 <td><a href="https://github.com/winlinvip/srs.win" target="_blank">SRS-Windows</a></td> 55 <td><a href="https://github.com/winlinvip/srs.win" target="_blank">SRS-Windows</a></td>
56 <td>SRS服务器<br/>Windows平台分支</td> 56 <td>SRS服务器<br/>Windows平台分支</td>
57 - <td><a href="https://github.com/suhetao" target="_blank">suhetao</a></td> 57 + <td><a href="https://github.com/suhetao" target="_blank">suhetao<br/>核桃</a></td>
58 <td><a href="https://github.com/suhetao" target="_blank">suhetao(suhetao@gmail.com)</a></td> 58 <td><a href="https://github.com/suhetao" target="_blank">suhetao(suhetao@gmail.com)</a></td>
59 </tr> 59 </tr>
60 <tr> 60 <tr>
61 <td><a href="https://github.com/winlinvip/srs.librtmp.win" target="_blank">SRS-LIBRTMP-Windows</a></td> 61 <td><a href="https://github.com/winlinvip/srs.librtmp.win" target="_blank">SRS-LIBRTMP-Windows</a></td>
62 <td>SRS-LIBRTMP客户端库<br/>Windows平台分支</td> 62 <td>SRS-LIBRTMP客户端库<br/>Windows平台分支</td>
63 - <td><a href="https://github.com/chadwangcn" target="_blank">chad.wang</a></td> 63 + <td><a href="https://github.com/chadwangcn" target="_blank">chad.wang<br/>videoWorker</a></td>
64 <td><a href="https://github.com/chadwangcn" target="_blank">chad.wang(chad.wang.cn@gmail.com)</a></td> 64 <td><a href="https://github.com/chadwangcn" target="_blank">chad.wang(chad.wang.cn@gmail.com)</a></td>
65 </tr> 65 </tr>
66 </table> 66 </table>
@@ -166,7 +166,7 @@ failed: @@ -166,7 +166,7 @@ failed:
166 } 166 }
167 167
168 handler->on_thread_stop(); 168 handler->on_thread_stop();
169 - srs_trace("thread cycle finished"); 169 + srs_info("thread cycle finished");
170 } 170 }
171 171
172 void* SrsThread::thread_fun(void* arg) 172 void* SrsThread::thread_fun(void* arg)
@@ -713,7 +713,7 @@ int SrsProtocol::do_decode_message(SrsMessageHeader& header, SrsStream* stream, @@ -713,7 +713,7 @@ int SrsProtocol::do_decode_message(SrsMessageHeader& header, SrsStream* stream,
713 } 713 }
714 714
715 // default packet to drop message. 715 // default packet to drop message.
716 - srs_trace("drop the AMF0/AMF3 command message, command_name=%s", command.c_str()); 716 + srs_info("drop the AMF0/AMF3 command message, command_name=%s", command.c_str());
717 *ppacket = packet = new SrsPacket(); 717 *ppacket = packet = new SrsPacket();
718 return ret; 718 return ret;
719 } else if(header.is_user_control_message()) { 719 } else if(header.is_user_control_message()) {
@@ -1176,7 +1176,7 @@ int srs_rtmp_expect_message(SrsProtocol* protocol, SrsMessage** pmsg, T** ppacke @@ -1176,7 +1176,7 @@ int srs_rtmp_expect_message(SrsProtocol* protocol, SrsMessage** pmsg, T** ppacke
1176 1176
1177 T* pkt = dynamic_cast<T*>(packet); 1177 T* pkt = dynamic_cast<T*>(packet);
1178 if (!pkt) { 1178 if (!pkt) {
1179 - srs_trace("drop message(type=%d, size=%d, time=%"PRId64", sid=%d).", 1179 + srs_info("drop message(type=%d, size=%d, time=%"PRId64", sid=%d).",
1180 msg->header.message_type, msg->header.payload_length, 1180 msg->header.message_type, msg->header.payload_length,
1181 msg->header.timestamp, msg->header.stream_id); 1181 msg->header.timestamp, msg->header.stream_id);
1182 srs_freep(msg); 1182 srs_freep(msg);