[vlc-devel] [PATCH 20/33] chromecast: differentiate error logs
Steve Lhomme
robux4 at videolabs.io
Wed Dec 23 12:58:39 CET 2015
---
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 415bb5b..89c7f16 100644
--- a/modules/stream_out/chromecast/chromecast_ctrl.cpp
+++ b/modules/stream_out/chromecast/chromecast_ctrl.cpp
@@ -528,7 +528,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);
@@ -558,7 +558,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);
}
--
2.6.3
More information about the vlc-devel
mailing list