Module: Puppet::Util::Logging

Defined Under Namespace

Classes: DeprecationWarning

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.setup_facter_logging!Object

Sets up Facter logging. This method causes Facter output to be forwarded to Puppet.



204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
# File 'lib/puppet/util/logging.rb', line 204

def self.setup_facter_logging!
  # Only recent versions of Facter support this feature
  return false unless Facter.respond_to? :on_message

  # The current Facter log levels are: :trace, :debug, :info, :warn, :error, and :fatal.
  # Convert to the corresponding levels in Puppet
  Facter.on_message do |level, message|
    case level
    when :trace, :debug
      level = :debug
    when :info
      # Same as Puppet
    when :warn
      level = :warning
    when :error
      level = :err
    when :fatal
      level = :crit
    else
      next
    end
    Puppet::Util::Log.create({:level => level, :source => 'Facter', :message => message})
    nil
  end
  true
end

Instance Method Details

#clear_deprecation_warningsObject



165
166
167
# File 'lib/puppet/util/logging.rb', line 165

def clear_deprecation_warnings
  $deprecation_warnings.clear if $deprecation_warnings
end

#debug(*args) ⇒ Object

Output a debug log message if debugging is on (but only then) If the output is anything except a static string, give the debug a block - it will be called with all other arguments, and is expected to return the single string result.

Use a block at all times for increased performance.

Examples:

This takes 40% of the time compared to not using a block

Puppet.debug { "This is a string that interpolated #{x} and #{y} }"


32
33
34
35
36
37
38
39
# File 'lib/puppet/util/logging.rb', line 32

def debug(*args)
  return nil unless Puppet::Util::Log.level == :debug
  if block_given?
    send_log(:debug, yield(*args))
  else
    send_log(:debug, args.join(" "))
  end
end

#deprecation_warning(message, key = nil) ⇒ Object

Logs a warning indicating that the Ruby code path is deprecated. Note that this method keeps track of the offending lines of code that triggered the deprecation warning, and will only log a warning once per offending line of code. It will also stop logging deprecation warnings altogether after 100 unique deprecation warnings have been logged. Finally, if Puppet includes ‘deprecations’, it will squelch all warning calls made via this method.

Parameters:

  • message (String)

    The message to log (logs via warning)

  • key (String) (defaults to: nil)

    Optional key to mark the message as unique. If not passed in, the originating call line will be used instead.



127
128
129
# File 'lib/puppet/util/logging.rb', line 127

def deprecation_warning(message, key = nil)
  issue_deprecation_warning(message, key, nil, nil, true)
end

#format_exception(exception, message = :default, trace = true) ⇒ Object



88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# File 'lib/puppet/util/logging.rb', line 88

def format_exception(exception, message = :default, trace = true)
  arr = []
  case message
  when :default
    arr << exception.message
  when nil
    # don't log anything if they passed a nil; they are just calling for the optional backtrace logging
  else
    arr << message
  end

  if trace and exception.backtrace
    arr << Puppet::Util.pretty_backtrace(exception.backtrace)
  end
  if exception.respond_to?(:original) and exception.original
    arr << "Wrapped exception:"
    arr << format_exception(exception.original, :default, trace)
  end
  arr.flatten.join("\n")
end

#get_deprecation_offenderObject



152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/puppet/util/logging.rb', line 152

def get_deprecation_offender()
  # we have to put this in its own method to simplify testing; we need to be able to mock the offender results in
  # order to test this class, and our framework does not appear to enjoy it if you try to mock Kernel.caller
  #
  # let's find the offending line;  we need to jump back up the stack a few steps to find the method that called
  #  the deprecated method
  if Puppet[:trace]
    caller()[2..-1]
  else
    [caller()[2]]
  end
end

#log_and_raise(exception, message) ⇒ Object

Raises:

  • (exception)


109
110
111
112
# File 'lib/puppet/util/logging.rb', line 109

def log_and_raise(exception, message)
  log_exception(exception, message)
  raise exception, message + "\n" + exception.to_s, exception.backtrace
end

#log_deprecations_to_file(deprecations_file, pattern = nil) ⇒ Object

utility method that can be called, e.g., from spec_helper config.after, when tracking down calls to deprecated code. Parameters:

deprecations_file

relative or absolute path of a file to log the deprecations to

pattern

(default nil) if specified, will only log deprecations whose message matches the provided pattern



177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
# File 'lib/puppet/util/logging.rb', line 177

def log_deprecations_to_file(deprecations_file, pattern = nil)
  # this method may get called lots and lots of times (e.g., from spec_helper config.after) without the global
  # list of deprecation warnings being cleared out.  We don't want to keep logging the same offenders over and over,
  # so, we need to keep track of what we've logged.
  #
  # It'd be nice if we could just clear out the list of deprecation warnings, but then the very next spec might
  # find the same offender, and we'd end up logging it again.
  $logged_deprecation_warnings ||= {}

  File.open(deprecations_file, "a") do |f|
    if ($deprecation_warnings) then
      $deprecation_warnings.each do |offender, message|
        if (! $logged_deprecation_warnings.has_key?(offender)) then
          $logged_deprecation_warnings[offender] = true
          if ((pattern.nil?) || (message =~ pattern)) then
            f.puts(message)
            f.puts(offender)
            f.puts()
          end
        end
      end
    end
  end
end

#log_exception(exception, message = :default, options = {}) ⇒ Object

Log an exception via Puppet.err. Will also log the backtrace if Puppet is set. Parameters:

exception

an Exception to log

message

an optional String overriding the message to be logged; by default, we log Exception.message.

If you pass a String here, your string will be logged instead.  You may also pass nil if you don't
wish to log a message at all; in this case it is likely that you are only calling this method in order
to take advantage of the backtrace logging.


48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/puppet/util/logging.rb', line 48

def log_exception(exception, message = :default, options = {})
  trace = Puppet[:trace] || options[:trace]
  if message == :default && exception.is_a?(Puppet::ParseErrorWithIssue)
    # Retain all detailed info and keep plain message and stacktrace separate
    backtrace = []
    build_exception_trace(backtrace, exception, trace)
    Puppet::Util::Log.create({
        :level => :err,
        :source => log_source,
        :message => exception.basic_message,
        :issue_code => exception.issue_code,
        :backtrace => backtrace.empty? ? nil : backtrace,
        :file => exception.file,
        :line => exception.line,
        :pos => exception.pos,
        :environment => exception.environment,
        :node => exception.node
      }.merge())
  else
    err(format_exception(exception, message, trace))
  end
end

#puppet_deprecation_warning(message, options = {}) ⇒ Object

Logs a warning whose origin comes from Puppet source rather than somewhere internal within Puppet. Otherwise the same as deprecation_warning()

Either :file and :line and/or :key must be passed.

Parameters:

  • message (String)

    The message to log (logs via warning)

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :file (String)

    File we are warning from

  • :line (Integer)

    Line number we are warning from

  • :key (String) — default: :file + :line

    Alternative key used to mark warning as unique

Raises:



142
143
144
145
146
147
148
149
150
# File 'lib/puppet/util/logging.rb', line 142

def puppet_deprecation_warning(message, options = {})
  key = options[:key]
  file = options[:file]
  line = options[:line]
  raise(Puppet::DevError, "Need either :file and :line, or :key") if (key.nil?) && (file.nil? || line.nil?)

  key ||= "#{file}:#{line}"
  issue_deprecation_warning(message, key, file, line, false)
end

#send_log(level, message) ⇒ Object



8
9
10
# File 'lib/puppet/util/logging.rb', line 8

def send_log(level, message)
  Puppet::Util::Log.create({:level => level, :source => log_source, :message => message}.merge())
end