Discussion
5
Replies
6650
Views
Mphasis
Posted: June 23, 2015
Last activity: June 24, 2015
Closed
Java step in activity
If i have the following code under my Java step for an activity
System.out.println("Hello Word!");
and execute the activity as a test run
Where will i see the output "Hello World"
or do i need to use soemthing else to output messages on the console in java step for an activity
Sysout will show the output in the console.
You can also use oLog.infoForced("Your message") in a Java step which will write the message to the Pega Logs.
Thanks.