Display an info

Property definitions

nitc $ ToolContext :: info
	# Display an info
	fun info(s: String, level: Int)
	do
		if level <= verbose_level then
			print "{s}"
		end
		if log_info != null then
			log_info.write s
			log_info.write "\n"
		end
	end
src/toolcontext.nit:316,2--326,4