How can I debug my operations?

1
0
-1

Hello,

is there any way to debug the operations? Sometimes I've an few depending operations and I can't tell which step doesn't work.

Thanks!

Comments

Submitted by k.prakhash on Wed, 01/18/2017 - 12:05

I too have same doubt. someone answer this.

1 answer

1
0
-1

I usually resort to logging..

import java.util.logging.Logger;
Logger logger = Logger.getLogger("org.bonitasoft");
logger.info("HELLO WORLD");

Notifications