Sha256: c9587ec3a71f6311f306f55417746b94d2c160f59cde33f48386a3d9277be031

Contents?: true

Size: 854 Bytes

Versions: 1

Compression:

Stored size: 854 Bytes

Contents

require 'log4r'
require 'soar_auditing_provider_api'

class Main
  include Log4r

  def test_sanity
    auditor = Logger.new 'sanity'
    auditor.outputters = Outputter.stdout
    @iut = SoarAuditingProvider::AuditingProviderAPI.new( { auditor => { 'nfrs' => {'accessibility' => 'local'} } } )
    @iut.select(SoarAuditingProvider::AuditingProviderAPI::DEFAULT)
    some_debug_object = 123
    @iut.info("This is info")
    @iut.debug(some_debug_object)
    dropped = 95
    @iut.warn("Statistics show that dropped packets have increased to #{dropped}%")
    @iut.error("Could not resend some dropped packets. They have been lost. All is still OK, I could compensate")
    @iut.fatal("Unable to perform action, too many dropped packets. Functional degradation.")
    @iut << 'Rack::CommonLogger requires this'
  end
end

main = Main.new
main.test_sanity

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
soar_auditing_provider_api-0.8.0 sanity/sanity.rb