Skip to content

Commit

Permalink
TT#50652 add logging info to media_player timer runs
Browse files Browse the repository at this point in the history
Change-Id: Iac4a1b2de1625ed9419bc76f22eea8167e55951f
  • Loading branch information
rfuchs committed Mar 6, 2019
1 parent 29a8384 commit d639223
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions daemon/media_player.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "codec.h"
#include "media_socket.h"
#include "ssrc.h"
#include "log_funcs.h"



Expand Down Expand Up @@ -348,6 +349,8 @@ static void media_player_run(void *ptr) {
struct media_player *mp = ptr;
struct call *call = mp->call;

log_info_call(call);

ilog(LOG_DEBUG, "running scheduled media_player");

rwlock_lock_r(&call->master_lock);
Expand All @@ -357,6 +360,8 @@ static void media_player_run(void *ptr) {

mutex_unlock(&mp->lock);
rwlock_unlock_r(&call->master_lock);

log_info_clear();
}


Expand Down

0 comments on commit d639223

Please sign in to comment.