Hi folks. Maybe I'm missing something here, but can anyone explain me where is some exception logged if raised inside Command's execute() method ? I use following :
Command command = new Command() { public void execute() throws Exception { throw new Exception("some message"); } }; try { commandManager.getCommandSink().enqueue(command); } catch (SinkException ex) { ex.printStackTrace(); } And I don't get "some message" exception logged anywhere, as if nothing happened. Just to say that processing of command objects works fine. It's just when exception occurs, it seems like it's caught silently somewhere inside ... Regards, Vjeran --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]