Sha256: 4f7b330526b10343b2ad77a4f3bbbe5138ac120729d1520da5f5adc139e400ea
Contents?: true
Size: 374 Bytes
Versions: 148
Compression:
Stored size: 374 Bytes
Contents
# Log a message on the server at level info. Puppet::Functions.create_function(:info, Puppet::Functions::InternalFunction) do # @param values The values to log. # @return [Undef] dispatch :info do scope_param repeated_param 'Any', :values return_type 'Undef' end def info(scope, *values) Puppet::Util::Log.log_func(scope, :info, values) end end
Version data entries
148 entries across 148 versions & 3 rubygems