method

open_logfile

ruby latest stable - Class: Logger::LogDevice
open_logfile(filename)
private

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