diff --git a/daemon/call_interfaces.c b/daemon/call_interfaces.c index a92059a3e..8e628b12c 100644 --- a/daemon/call_interfaces.c +++ b/daemon/call_interfaces.c @@ -1930,6 +1930,8 @@ const char *call_play_media_ng(ng_command_ctx_t *ctx) { .db_id = flags.db_id, ); + ilog(LOG_DEBUG, "Requesting play media"); + err = call_play_media_for_ml(monologue, opts, &flags); if (err) return err; diff --git a/daemon/media_player.c b/daemon/media_player.c index 11a15d351..4f383d979 100644 --- a/daemon/media_player.c +++ b/daemon/media_player.c @@ -245,7 +245,7 @@ void media_player_new(struct media_player **mpp, struct call_monologue *ml, stru struct media_player *mp; if (!(mp = *mpp)) { - //ilog(LOG_DEBUG, "creating media_player"); + ilog(LOG_DEBUG, "creating media_player"); mp = *mpp = obj_alloc0(struct media_player, __media_player_free);