Sha256: e8da34e2053030e04bad599968a34d06c0dc91f07734d707855821b105813f85
Contents?: true
Size: 392 Bytes
Versions: 405
Compression:
Stored size: 392 Bytes
Contents
# Logs a message on the server at level `warning`. 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
405 entries across 405 versions & 2 rubygems