We are trying to integrate Rasa with a customer support system.
Sometimes we observe a reply from Rasa that we do not anticipate and for us, there is no easy way to find what message was fed to Rasa that caused a specific unexpected response.
Is there any way we can force rasa to collect logs, which will have messages received by rasa and session id.
–debug is helpful, but it throws a lot of info, I wish there there could be a flag or feature to dump only message transactions.
Thanks for your reply.
Python Logging Options:
You can control level of log messages printed. In addition to these
arguments, a more fine grained configuration can be achieved with
environment variables. See online documentation for more info.
-v, --verbose Be verbose. Sets logging level to INFO. (default:
None)
-vv, --debug Print lots of debugging statements. Sets logging level
to DEBUG. (default: None)
--quiet Be quiet! Sets logging level to WARNING. (default:
None)