Sha256: b7eecb82540e0d14d3eaf7d9780bebd520862c51c8044392488cc26cd811de76
Contents?: true
Size: 1.81 KB
Versions: 1
Compression:
Stored size: 1.81 KB
Contents
require 'semantic_logger/core_ext/thread' require 'semantic_logger/version' require 'semantic_logger/semantic_logger' # @formatter:off module SemanticLogger autoload :AnsiColors, 'semantic_logger/ansi_colors' autoload :Appender, 'semantic_logger/appender' autoload :Base, 'semantic_logger/base' autoload :DebugAsTraceLogger, 'semantic_logger/debug_as_trace_logger' autoload :Log, 'semantic_logger/log' autoload :Logger, 'semantic_logger/logger' autoload :Loggable, 'semantic_logger/loggable' autoload :Processor, 'semantic_logger/processor' autoload :Subscriber, 'semantic_logger/subscriber' module Concerns autoload :Compatibility, 'semantic_logger/concerns/compatibility' end module Formatters autoload :Base, 'semantic_logger/formatters/base' autoload :Color, 'semantic_logger/formatters/color' autoload :Default, 'semantic_logger/formatters/default' autoload :Json, 'semantic_logger/formatters/json' autoload :Raw, 'semantic_logger/formatters/raw' autoload :Syslog, 'semantic_logger/formatters/syslog' end module Metrics autoload :NewRelic, 'semantic_logger/metrics/new_relic' autoload :Statsd, 'semantic_logger/metrics/statsd' autoload :Udp, 'semantic_logger/metrics/udp' end if defined?(JRuby) module JRuby autoload :GarbageCollectionLogger, 'semantic_logger/jruby/garbage_collection_logger' end end end # @formatter:on # Flush all appenders at exit, waiting for outstanding messages on the queue # to be written first. at_exit do # Cannot close since test frameworks only run at exit, at which point the logging would already be closed. SemanticLogger.flush end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
semantic_logger-4.1.1 | lib/semantic_logger.rb |