Sha256: 0baa492a7e2d513f229cd629ef9ccfde0cc7cf9b8cb2c98f091ded054c2f2ff9
Contents?: true
Size: 1.79 KB
Versions: 1
Compression:
Stored size: 1.79 KB
Contents
# # Fluent # # Copyright (C) 2011 FURUHASHI Sadayuki # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # module Fluent module Logger autoload :ConsoleLogger , 'fluent/logger/console_logger' autoload :FluentLogger , 'fluent/logger/fluent_logger' autoload :LoggerBase , 'fluent/logger/logger_base' autoload :TestLogger , 'fluent/logger/test_logger' autoload :TextLogger , 'fluent/logger/text_logger' autoload :NullLogger , 'fluent/logger/null_logger' autoload :VERSION , 'fluent/logger/version' @@default_logger = nil def self.new(*args) if args.first.is_a?(Class) && args.first.ancestors.include?(LoggerBase) type = args.shift else type = FluentLogger end type.new(*args) end def self.open(*args) close @@default_logger = new(*args) end def self.close if @@default_logger @@default_logger.close @@default_logger = nil end end def self.post(tag, map) default.post(tag, map) end def self.post_with_time(tag, map, time) default.post_with_time(tag, map, time) end def self.default @@default_logger ||= ConsoleLogger.new(STDOUT) end def self.default=(logger) @@default_logger = logger end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-logger-0.6.0 | lib/fluent/logger.rb |