Module for output debug messages. Default setting: If $DEBUG or $VERBOSE is true, output debug messages to $stderr; Otherwise, don't output messages.
get current debug messeages output destination
# File lib/bio/io/flatfile/index.rb, line 424 def self.out @@out end
Set debug messages output destination. If true is given, outputs to $stderr. If nil is given, outputs nothing. This method affects ALL of FlatFileIndex related objects/methods.
# File lib/bio/io/flatfile/index.rb, line 411 def self.out=(io) if io then @@out = io @@out = $stderr if io == true @@flag = true else @@out = nil @@flag = nil end @@out end
Generated with the Darkfish Rdoc Generator 2.