method

open_logfile

open_logfile(filename)
private

No documentation available.

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