arrow_back history picture_as_pdf This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ~~NOTRANS~~ ~~Title: Log messages~~ If you start your own Java function or a Lifecylce Object Action, you can also print messages to your job log. Simply add following code in your function: <code java> JobContext.log("Start to read stream"); </code> If you run your function not as Job via Scheduler, your message will be shown via ''System.out'' in your console output. An example job: <code java> JobContext.log("Start to read stream"); Thread.sleep(10000); JobContext.log("Read stream after 10000millis"); </code> will show following log message: <code java> Successful Start to read stream Read stream after 10000millis </code>