﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
7265	"Add timestamp output to runserver when ""Validating models..."""	Valera Grishin	nobody	"This is simple improvement to the Django development server available through ""manage.py runserver"" command. The goal is to add output of current time to the string ""Validating models...""

So the proposition is to change this:
{{{
!#python
# django/core/management/commands/runserver.py:47

            print ""Validating models...""
}}}

To this:
{{{
!#python
# django/core/management/commands/runserver.py

            print ""[%s] Validating models..."" % str(datetime.datetime.now())[11:19]
}}}

This will cause the output:
{{{
Validating models...
}}}
to to be similar to this:
{{{
[21:30:42] Validating models...
}}}

Obviously you need to import datetime at the top of file (not shown in the example above). Full patch is attached."		closed	Tools	dev		fixed			Unreviewed	1	0	0	0	0	0
