Module: Puppet::Util::LogPaths

Included in:
Parameter, Type
Defined in:
lib/vendor/puppet/util/log_paths.rb

Instance Method Summary collapse

Instance Method Details

#pathObject

return the full path to us, for logging and rollback some classes (e.g., FileTypeRecords) will have to override this



4
5
6
# File 'lib/vendor/puppet/util/log_paths.rb', line 4

def path
  @path ||= '/' + pathbuilder.join('/')
end

#source_descriptorsObject



8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/vendor/puppet/util/log_paths.rb', line 8

def source_descriptors
  descriptors = {}

  descriptors[:tags] = tags

  [:path, :file, :line].each do |param|
    next unless value = send(param)
    descriptors[param] = value
  end

  descriptors
end