Hey, i’m running rasa actions server into docker container, and i want to know where i get output of action.py script. For exemple, in action custom, i do print() and the output aren’t display in action server container.
Someone have an idea ?
Hey, i’m running rasa actions server into docker container, and i want to know where i get output of action.py script. For exemple, in action custom, i do print() and the output aren’t display in action server container.
Someone have an idea ?
hi clem! try running logger.error instead of print, then you should see the logs with docker logs <container name>
The command is logging.error() or logging.info() after import the library logging but It’s working, thank you !