diff --git a/README.md b/README.md
index d74cb3cdf..a23c535ef 100755
--- a/README.md
+++ b/README.md
@@ -54,13 +54,13 @@ git clone https://code.csdn.net/winlinvip/srs-csdn.git
SRS-Windows |
SRS服务器 Windows平台分支 |
- suhetao |
+ suhetao 核桃 |
suhetao(suhetao@gmail.com) |
SRS-LIBRTMP-Windows |
SRS-LIBRTMP客户端库 Windows平台分支 |
- chad.wang |
+ chad.wang videoWorker |
chad.wang(chad.wang.cn@gmail.com) |
diff --git a/trunk/src/app/srs_app_thread.cpp b/trunk/src/app/srs_app_thread.cpp
index 348f57d2c..b638263fc 100644
--- a/trunk/src/app/srs_app_thread.cpp
+++ b/trunk/src/app/srs_app_thread.cpp
@@ -166,7 +166,7 @@ failed:
}
handler->on_thread_stop();
- srs_trace("thread cycle finished");
+ srs_info("thread cycle finished");
}
void* SrsThread::thread_fun(void* arg)
diff --git a/trunk/src/rtmp/srs_protocol_rtmp_stack.cpp b/trunk/src/rtmp/srs_protocol_rtmp_stack.cpp
index e5587d955..5a47b6336 100644
--- a/trunk/src/rtmp/srs_protocol_rtmp_stack.cpp
+++ b/trunk/src/rtmp/srs_protocol_rtmp_stack.cpp
@@ -713,7 +713,7 @@ int SrsProtocol::do_decode_message(SrsMessageHeader& header, SrsStream* stream,
}
// default packet to drop message.
- srs_trace("drop the AMF0/AMF3 command message, command_name=%s", command.c_str());
+ srs_info("drop the AMF0/AMF3 command message, command_name=%s", command.c_str());
*ppacket = packet = new SrsPacket();
return ret;
} else if(header.is_user_control_message()) {
diff --git a/trunk/src/rtmp/srs_protocol_rtmp_stack.hpp b/trunk/src/rtmp/srs_protocol_rtmp_stack.hpp
index e5f085521..710198683 100644
--- a/trunk/src/rtmp/srs_protocol_rtmp_stack.hpp
+++ b/trunk/src/rtmp/srs_protocol_rtmp_stack.hpp
@@ -1176,7 +1176,7 @@ int srs_rtmp_expect_message(SrsProtocol* protocol, SrsMessage** pmsg, T** ppacke
T* pkt = dynamic_cast(packet);
if (!pkt) {
- srs_trace("drop message(type=%d, size=%d, time=%"PRId64", sid=%d).",
+ srs_info("drop message(type=%d, size=%d, time=%"PRId64", sid=%d).",
msg->header.message_type, msg->header.payload_length,
msg->header.timestamp, msg->header.stream_id);
srs_freep(msg);