Hello everyone, i’m a beginner to this can anyone please tell me how to write the log files for running the rasa action server and rasa core server. I have tried using this command “python3 -m rasa_core.run -d models/dialogue -u models/current/nlu --endpoints endpoints.yml --enable_api -o out.log” it is storing the only wanings in rasa core server. But what i need is there instead of warning it need to show “127.0.0.1 - - [2019-09-09 15:32:39] “POST /conversations/INDAAA000049/respond?token=48288839 HTTP/1.1” 200 533 1.391196”
What Rasa version do you use?
If you update the the latest version 1.3 you can achieve this by running
rasa run --models models --endpoints endpoints.yml --enable-api --log-file out.log --debug
The --debug
flag enables the debug mode. Your logs will be much more detailed. However, if you update to 1.3 you need to retrain your models with rasa train
.
1 Like