# File lib/puppet/util/log.rb, line 49 49: def Log.close(destination) 50: if @destinations.include?(destination) 51: @destinations[destination].flush if @destinations[destination].respond_to?(:flush) 52: @destinations[destination].close if @destinations[destination].respond_to?(:close) 53: @destinations.delete(destination) 54: end 55: end