if I do something like this merlin just starts as without any complains, but should give some info when
using in the debug mode.
public void start() throws Exception
{
if (started)
throw new IllegalStateException("Already started");
if (!started) throw new Exception("force error!");
new Thread(this).start();
started = true;
}the DefaultDeploymentService class does throw the correct exception like: throw new DeploymentException( error, e );
how can I get them into the debug log ?
best wishes Kristian
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
