Sha256: 2c84700f65ca5a086d0ac0f968d0bb09c42a84dc6784ba7ba20de9963822c350

Contents?: true

Size: 1.62 KB

Versions: 20

Compression:

Stored size: 1.62 KB

Contents

#
# Author:: Adam Jacob (<adam@opscode.com>)
# Author:: AJ Christensen (<@aj@opscode.com>)
# Author:: Christopher Brown (<cb@opscode.com>)
# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# 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 'chef'
require 'mixlib/log'

class Chef
  class Log
    extend Mixlib::Log
    
    class << self
      attr_accessor :verbose
      attr_reader :verbose_logger
      protected :verbose_logger
      
      def verbose
        !(@verbose_logger.nil?)
      end

      def verbose=(value)
        if value
          @verbose_logger ||= Logger.new(STDOUT)
          @verbose_logger.level = self.logger.level
          @verbose_logger.formatter = self.logger.formatter
        else
          @verbose_logger = nil
        end
        self.verbose
      end
      
      def method_missing(method_symbol, *args)
        self.verbose_logger.send(method_symbol, *args) if self.verbose
        logger.send(method_symbol, *args)
      end
    end  

    class Formatter
      def self.show_time=(*args)
        Mixlib::Log::Formatter.show_time = *args
      end
    end
    
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
chef-0.9.0 lib/chef/log.rb
chef-0.9.0.rc02 lib/chef/log.rb
chef-0.9.0.rc01 lib/chef/log.rb
chef-0.9.0.b02 lib/chef/log.rb
chef-0.9.0.b01 lib/chef/log.rb
chef-0.9.0.a92 lib/chef/log.rb
chef-0.9.0.a91 lib/chef/log.rb
chef-0.9.0.a90 lib/chef/log.rb
chef-0.9.0.a10 lib/chef/log.rb
chef-0.9.0.a8 lib/chef/log.rb
chef-0.9.0.a6 lib/chef/log.rb
chef-0.9.0.a4 lib/chef/log.rb
chef-0.9.0.a3 lib/chef/log.rb
chef-0.8.16 lib/chef/log.rb
chef-0.8.14 lib/chef/log.rb
chef-0.8.10 lib/chef/log.rb
chef-0.8.8 lib/chef/log.rb
chef-0.8.6 lib/chef/log.rb
chef-0.8.4 lib/chef/log.rb
chef-0.8.2 lib/chef/log.rb