Sha256: 724401e4cf2a5321036f69bb716c7d6474ac6cc4090c6b405ada3d9a9076932a

Contents?: true

Size: 1.29 KB

Versions: 2

Compression:

Stored size: 1.29 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.
#
require 'fluent/logger/text_logger'

module Fluent
  module Logger
    class ConsoleLogger < TextLogger
      def initialize(out)
        super()
        require 'time'

        if out.is_a?(String)
          @io = File.open(out, "a")
          @on_reopen = Proc.new { @io.reopen(out, "a") }
        elsif out.respond_to?(:write)
          @io = out
          @on_reopen = Proc.new { }
        else
          raise "Invalid output: #{out.inspect}"
        end
      end

      attr_accessor :time_format

      def reopen!
        @on_reopen.call
      end

      def post_text(text)
        @io.puts text
      end

      def close
        @io.close
        self
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fluent-logger-0.5.1 lib/fluent/logger/console_logger.rb
fluent-logger-0.5.0 lib/fluent/logger/console_logger.rb