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