Logging conversation without writing python

When I start my bot from the console I use this

python -m rasa_core.run -d models/current/dialogue -u models/current/nlu -p 5002 -c telegram --credentials credentials/telegram_bot.yml

but the console only logs

127.0.0.1 - - [2018-12-19 08:21:58] “POST /webhooks/telegram/webhook HTTP/1.1” 200 122 0.181957

If I add an argument to log, (which is the default anyway)

–log_file rasa_code.log

the log file stops any output after

Webhook Setup Successful Rasa Core server is up and running on http://localhost:5002

Without getting into any code, how can I log what is going on to debug my bot? For example, right now Telegram is sending /start, in the core.source file it only shows _restart or /restart, so how can I see what is coming in from the client, so I know how to respond to it?

You can do a curl to track the conversation.

curl -XGET localhost:5002/conversations/default/tracker | python -mjson.tool

Is this what you are looking for?