Hello ,
i m using bonitasoft community and i create one custom connector
i m using Logger for data print
but when i see engine log i can’t find my log ?
so what should i do i want to print data as printed in standard connector
pl help
Hi,
you can use java.util.logging.Logger class.
you can find here an example:
Logger LOG = Logger.getLogger(this.getClass().toString());
LOG.severe(" data data to print");
Hope it helps
Karim