vlc | branch: master | Steve Lhomme <[email protected]> | Wed Dec 23 12:58:39 2015 +0100| [43ef6f5eeb0b2e93d01f02ff43951a2bff78a470] | committer: Jean-Baptiste Kempf
chromecast: differentiate error logs Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=43ef6f5eeb0b2e93d01f02ff43951a2bff78a470 --- modules/stream_out/chromecast/chromecast_ctrl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/stream_out/chromecast/chromecast_ctrl.cpp b/modules/stream_out/chromecast/chromecast_ctrl.cpp index 53feac2..8a1b968 100644 --- a/modules/stream_out/chromecast/chromecast_ctrl.cpp +++ b/modules/stream_out/chromecast/chromecast_ctrl.cpp @@ -530,7 +530,7 @@ void intf_sys_t::handleMessages() if ((i_ret < 0 && errno != EAGAIN) || i_ret == 0) #endif { - msg_Err(p_stream, "The connection to the Chromecast died."); + msg_Err(p_stream, "The connection to the Chromecast died (receiving)."); vlc_mutex_locker locker(&lock); setConnectionStatus(CHROMECAST_CONNECTION_DEAD); vlc_restorecancel(canc); @@ -560,7 +560,7 @@ void intf_sys_t::handleMessages() if ((i_ret < 0 && errno != EAGAIN) || i_ret == 0) #endif { - msg_Err(p_stream, "The connection to the Chromecast died."); + msg_Err(p_stream, "The connection to the Chromecast died (sending)."); vlc_mutex_locker locker(&lock); setConnectionStatus(CHROMECAST_CONNECTION_DEAD); } _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
