Hi all,
I'm executing a cron job with maven which executes several Java classes and each class launchs 8 threads.
My problem is that when I want to check the results I see something like this:
US1449.afterClass:26 NullPointer
com.****.******.US1449.displayRouteMapToFromSelector(com.*****.******.US1449)
Run 1: US1449.displayRouteMapToFromSelector:50 » NoSuchElement Unable to find element...
Run 2: PASS
Run 3: US1449.displayRouteMapToFromSelector:50 » NoSuchElement Unable to locate eleme...
Run 4: US1449.displayRouteMapToFromSelector:50 » NoSuchElement Unable to locate eleme...
Run 5: US1449.displayRouteMapToFromSelector:50 » NoSuchElement no such element
(Ses...
Run 6: US1449.displayRouteMapToFromSelector:50 » NoSuchElement Could not find element...
Run 7: US1449.displayRouteMapToFromSelector:50 » NoSuchElement Unable to find element...
Run 8: PASS
Is there anyway to override that "Run 1, Run2..." to show the ID of the thread or a descriptive text?
Thanks in advance :)