diff --git a/daemon/call_interfaces.c b/daemon/call_interfaces.c index 4e79d6e6a..2d55988d9 100644 --- a/daemon/call_interfaces.c +++ b/daemon/call_interfaces.c @@ -3879,6 +3879,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 5aa2249ac..a991cfc9e 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);