Texts detail on console

Hi everyone, I just want to ask a question. For example I added a custom keyword to my test case, and after my tests run there is no information about my tests on console something like sysout . Basically if I write System.out.print(“Hello”) to my test case > it is working fine and I can be able to see on console

But if I write System.out.print(“Hello”) to my custom keyword > it is working fine but I can not be able too see on console what was the text

So is there any idea for that? Or am I doing something wrong? Thanks

Please use System.out.println(‘hello’)

System.out.println(“hello”)

I mean that if I write hello to my custom keyword I can not able to see on console. Is there any way to see? Or should I use this statement in my test case? Is it just one way ?