Hi!
You’re currently using log.error()
in your BeanShell script, which writes messages to the server logs (like catalina.out
if you’re using Tomcat). That’s why you’re seeing a blank screen—it’s not designed to display output in the UI.
To show output on the screen:
Use a return
statement instead:
return firstname;