1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Refine tid in error log

This commit is contained in:
winlin 2019-11-29 12:33:32 +08:00
parent f1c42f7ee0
commit ba02640c46

View file

@ -81,7 +81,7 @@ std::string SrsCplxError::description() {
next = this;
while (next) {
ss << "thread #" << next->cid << ": "
ss << "thread [" << next->cid << "]: "
<< next->func << "() [" << next->file << ":" << next->line << "]"
<< "[errno=" << next->rerrno << "]";