Commit e52ce3a1 authored by Rafaël Carré's avatar Rafaël Carré

dvbpsi: do not spam the debug log at each PMT update

dvbpsi own debug messages are not needed to debug VLC modules
parent 453248ac
...@@ -73,7 +73,9 @@ static void dvbpsi_messages(dvbpsi_t *p_dvbpsi, const dvbpsi_msg_level_t level, ...@@ -73,7 +73,9 @@ static void dvbpsi_messages(dvbpsi_t *p_dvbpsi, const dvbpsi_msg_level_t level,
{ {
case DVBPSI_MSG_ERROR: msg_Err( obj, "%s", msg ); break; case DVBPSI_MSG_ERROR: msg_Err( obj, "%s", msg ); break;
case DVBPSI_MSG_WARN: msg_Warn( obj, "%s", msg ); break; case DVBPSI_MSG_WARN: msg_Warn( obj, "%s", msg ); break;
#ifdef DVBPSI_DEBUG
case DVBPSI_MSG_DEBUG: msg_Dbg( obj, "%s", msg ); break; case DVBPSI_MSG_DEBUG: msg_Dbg( obj, "%s", msg ); break;
#endif
} }
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment