diff --git a/daemon/call_interfaces.c b/daemon/call_interfaces.c index 726582b2b..331eb88f0 100644 --- a/daemon/call_interfaces.c +++ b/daemon/call_interfaces.c @@ -3982,6 +3982,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 a99b77fc2..83245bf3e 100644 --- a/daemon/media_player.c +++ b/daemon/media_player.c @@ -242,7 +242,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);