# File lib/daemons/syslogio.rb, line 106
  def sync=(sync)
    if sync != true and sync != false then
      raise ArgumentError, "sync must be true or false"
    end
    @sync = sync
    if sync == true then
      flush
    end
  end