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