Browse Source

Mixer: Improve chain insert debugging messages.

tags/non-daw-v1.1.0
Jonathan Moore Liles 15 years ago
parent
commit
db0dfc1701
1 changed files with 8 additions and 1 deletions
  1. +8
    -1
      Mixer/Chain.C

+ 8
- 1
Mixer/Chain.C View File

@@ -455,7 +455,11 @@ Chain::insert ( Module *m, Module *n )
n->chain( this );
}
else
{
DMESSAGE( "Module says it can't support %i inputs", module( modules() - 1 )->noutputs() );

goto err;
}
}
else
{
@@ -488,7 +492,8 @@ Chain::insert ( Module *m, Module *n )
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->noutputs(),
n->ncontrol_inputs(),
@@ -504,6 +509,8 @@ Chain::insert ( Module *m, Module *n )

err:

DMESSAGE( "Insert failed" );

engine()->unlock();

return false;


Loading…
Cancel
Save