﻿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
16301	Show clients remote IP when running runserver	jeyaseel@…	nobody	"When running the dev-server (runserver), it would be nice to have the remote clients IP shown in the logs.

Fix:
In basehttp.py (django/core/servers), change this line in the log_message() method:
    msg = ""[%s] %s\n"" % (self.log_date_time_string(), format % args)
to:
    msg = ""[%s] (%s) %s\n"" % (self.log_date_time_string(), self.client_address[0], format % args)

Makes your log look like this:
   [20/Jun/2011 14:32:13] (85.xx.xx.xx) ""GET /full_list/ HTTP/1.1"" 200 79"	New feature	closed	Core (Other)	1.3	Normal	wontfix			Unreviewed	1	0	0	0	0	0
