Processing time in miliseconds (or null if no clock was found in request)

Property definitions

popcorn $ LogEntry :: response_time
	# Processing time in miliseconds (or null if no clock was found in request)
	var response_time: nullable Int is lazy do
		var clock = request.clock
		if clock == null then return null
		return (clock.total * 1000.0).to_i
	end
lib/popcorn/pop_tracker.nit:216,2--221,4