Flowdock
method

reopen

Importance_0
v2_6_3 - Show latest stable - 0 notes - Class: Logger::LogDevice
reopen(log = nil) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/logger.rb, line 715
    def reopen(log = nil)
      # reopen the same filename if no argument, do nothing for IO
      log ||= @filename if @filename
      if log
        synchronize do
          if @filename and @dev
            @dev.close rescue nil # close only file opened by Logger
            @filename = nil
          end
          set_dev(log)
        end
      end
      self
    end
Register or log in to add new notes.