Possible to log Django development server using cmd ">>"?

django, python, python-2.7

Solution

Django uses python logging module and you can configure it in your `settings.py` to output into file.

Example for you

Problem

Is it possible to output Django's runserver output into a text file? such as: `python manage.py runserver>>Log.txt`?

Original source

Related problems