Mixer: Improve chain insert debugging messages.
This commit is contained in:
parent
8e0a625312
commit
db0dfc1701
|
@ -455,8 +455,12 @@ Chain::insert ( Module *m, Module *n )
|
||||||
n->chain( this );
|
n->chain( this );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
DMESSAGE( "Module says it can't support %i inputs", module( modules() - 1 )->noutputs() );
|
||||||
|
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
int i = modules_pack->find( m );
|
int i = modules_pack->find( m );
|
||||||
|
@ -488,7 +492,8 @@ Chain::insert ( Module *m, Module *n )
|
||||||
n->chain( this );
|
n->chain( this );
|
||||||
}
|
}
|
||||||
|
|
||||||
DMESSAGE( "Module has %i:%i audio and %i:%i control ports",
|
DMESSAGE( "Module \"%s\" has %i:%i audio and %i:%i control ports",
|
||||||
|
n->name(),
|
||||||
n->ninputs(),
|
n->ninputs(),
|
||||||
n->noutputs(),
|
n->noutputs(),
|
||||||
n->ncontrol_inputs(),
|
n->ncontrol_inputs(),
|
||||||
|
@ -504,6 +509,8 @@ Chain::insert ( Module *m, Module *n )
|
||||||
|
|
||||||
err:
|
err:
|
||||||
|
|
||||||
|
DMESSAGE( "Insert failed" );
|
||||||
|
|
||||||
engine()->unlock();
|
engine()->unlock();
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue