From 2dc3014149819758d70d96e5dc696ff405c5d476 Mon Sep 17 00:00:00 2001 From: Donat Zenichev Date: Thu, 21 May 2026 14:29:19 +0200 Subject: [PATCH] MT#62750 media_player: revert `ilog()` To show that player has been created. Additionally: add one more log line to track that the play media is being requested. Change-Id: I4e8eb8f282654902a96bffb70c7c241e9c78b8d5 --- daemon/call_interfaces.c | 2 ++ daemon/media_player.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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);