Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2_1_10) is shown here.
log(msg)
protected
Log a message to #stdlog, if it’s defined. This implementation outputs
the timestamp and message to the log.
# File lib/gserver.rb, line 204
def log(msg)
if @stdlog
@stdlog.puts("[#{Time.new.ctime}] %s" % msg)
@stdlog.flush
end
end