open_logfile(filename)
No documentation available.
# File lib/logger.rb, line 744 def open_logfile(filename) begin File.open(filename, (File::WRONLY | File::APPEND)) rescue Errno::ENOENT create_logfile(filename) end end