ansible hides commands and output from user

I know that ansible can not show realtime output of commands to user consle.
https://github.com/ansible/ansible/issues/3887

But I want to see realtime output of commands.

@bcoca suggested me about ansible log.
https://github.com/ansible/ansible/issues/11233

I tried.
But ansible log is not realtime and does not contain output.

We must see shell comands, stdout and stderr.
I hope ansible will support server side commands log.

Please imagine user who is new to Linux.
The user never see commands, stdout and stderr in ansible world.
That is not good.

you can register the result of shell/command, then the stdout/stderr
will be in the variable, which you can then display using debug.