From a2cefe4dbd810c27da04db2d84aff9bf1b33fc62 Mon Sep 17 00:00:00 2001 From: winlin Date: Tue, 13 Feb 2018 09:02:46 +0800 Subject: [PATCH] For #1059, show more information from stream --- trunk/src/app/srs_app_rtmp_conn.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trunk/src/app/srs_app_rtmp_conn.cpp b/trunk/src/app/srs_app_rtmp_conn.cpp index f7099504c..cf3231b8f 100644 --- a/trunk/src/app/srs_app_rtmp_conn.cpp +++ b/trunk/src/app/srs_app_rtmp_conn.cpp @@ -465,8 +465,8 @@ srs_error_t SrsRtmpConn::stream_service_cycle() srs_discovery_tc_url(req->tcUrl, req->schema, req->host, req->vhost, req->app, req->stream, req->port, req->param); req->strip(); - srs_trace("client identified, type=%s, stream_name=%s, duration=%.2f", - srs_client_type_string(info->type).c_str(), req->stream.c_str(), req->duration); + srs_trace("client identified, type=%s, vhost=%s, app=%s, stream_name=%s, duration=%.2f", + srs_client_type_string(info->type).c_str(), req->vhost.c_str(), req->app.c_str(), req->stream.c_str(), req->duration); // discovery vhost, resolve the vhost from config SrsConfDirective* parsed_vhost = _srs_config->get_vhost(req->vhost);