[vlc-commits] chromecast: differentiate error logs
Steve Lhomme
git at videolan.org
Wed Dec 23 20:28:25 CET 2015
vlc | branch: master | Steve Lhomme <robUx4 at videolabs.io> | Wed Dec 23 12:58:39 2015 +0100| [43ef6f5eeb0b2e93d01f02ff43951a2bff78a470] | committer: Jean-Baptiste Kempf
chromecast: differentiate error logs
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> 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);
}
More information about the vlc-commits
mailing list