Sha256: 7a80c379a30f5eb400327fbffee80d73ecb54adab9fe6880e6168fba0e89b8db

Contents?: true

Size: 612 Bytes

Versions: 1

Compression:

Stored size: 612 Bytes

Contents

module Bio
  module GFFbrowser

    module Helpers

      module Error
        include Bio::Log

        def debug str, id=''
          log = LoggerPlus['bio-gff3']
          log.debug str+" <#{id}>"
        end

        def info str, id=''
          log = LoggerPlus['bio-gff3']
          log.info str+" <#{id}>"
        end

        def warn str, id=''
          log = LoggerPlus['bio-gff3']
          log.warn str+" <#{id}>"
        end

        def error str, id=''
          log = LoggerPlus['bio-gff3']
          log.error_(str+" <#{id}>",:act => FailOnError.new)

        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bio-gff3-0.8.5 lib/bio/output/gfflogger.rb