How to Print data on server engine log of custom connector

1
0
-1

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

1 answer

1
0
-1

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

Notifications