Sha256: de849be1ede77309b7bfc6aa16b9a4181fd2abb049b193492e5ac7fa87cd4251
Contents?: true
Size: 1.55 KB
Versions: 4
Compression:
Stored size: 1.55 KB
Contents
# # Fluentd # # 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. # require 'serverengine' require 'fluent/log' module Fluent module Test class DummyLogDevice attr_reader :logs attr_accessor :flush_logs def initialize @logs = [] @flush_logs = true end def reset @logs = [] if @flush_logs end def tty? false end def puts(*args) args.each{ |arg| write(arg + "\n") } end def write(message) @logs.push message end def flush true end def close true end end class TestLogger < Fluent::PluginLogger def initialize @logdev = DummyLogDevice.new dl_opts = {} dl_opts[:log_level] = ServerEngine::DaemonLogger::INFO logger = ServerEngine::DaemonLogger.new(@logdev, dl_opts) log = Fluent::Log.new(logger) super(log) end def reset @logdev.reset end def logs @logdev.logs end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fluentd-0.14.8 | lib/fluent/test/log.rb |
fluentd-0.14.7-x64-mingw32 | lib/fluent/test/log.rb |
fluentd-0.14.7-x86-mingw32 | lib/fluent/test/log.rb |
fluentd-0.14.7 | lib/fluent/test/log.rb |