# File lib/swiftcore/Analogger.rb, line 255
      def flush_queue
        @logs.each_value do |l|
          #if !l.logfile.closed? and l.logfile.fileno > 2
          if l.logfile.fileno > 2
            l.logfile.fdatasync rescue l.logfile.fsync
          end
        end
      end