# File lib/net/yail/output_api.rb, line 101
  def notice(target, text)
    # Dup strings so handler can filter safely
    target = target.dup
    text = text.dup

    handle(:outgoing_notice, target, text)

    report "{#{target}} -#{@me}- #{text}" unless @silent
    raw("NOTICE #{target} :#{text}", false)
  end