Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_392) is shown here.
log(msg)
public
Write a message to standard error if $verbose is enabled.
# File lib/rake/contrib/sys.rb, line 146
def log(msg)
print " " if $trace && $verbose
$stderr.puts msg if $verbose
end