module Hoe::RakeHelpers

def trace( *msg )

## Output a logging message if tracing is on
def trace( *msg )
	return unless Rake.application.options.trace
	output = colorize( msg.flatten.join(' '), 'yellow' )
	$stderr.puts( output )
end