add some more debug

This commit is contained in:
Wim Taymans 2022-09-23 16:48:40 +02:00
parent e8aef6b4bd
commit 7c93c29cfd
3 changed files with 11 additions and 2 deletions

View file

@ -829,6 +829,7 @@ static int impl_node_send_command(void *object, const struct spa_command *comman
SPA_FALLTHROUGH
case SPA_NODE_COMMAND_Pause:
this->started = false;
spa_log_debug(this->log, "%p: stopped", this);
break;
default:
break;
@ -852,6 +853,7 @@ static int impl_node_send_command(void *object, const struct spa_command *comman
switch (SPA_NODE_COMMAND_ID(command)) {
case SPA_NODE_COMMAND_Start:
this->started = true;
spa_log_debug(this->log, "%p: started", this);
break;
}
return res;