Sha256: 4cd743ad799a779955e4f1cd06c54fe3277a219af5d6f5a14113e5499baa90aa

Contents?: true

Size: 372 Bytes

Versions: 447

Compression:

Stored size: 372 Bytes

Contents

# Logs a message on the server at level `err`.
Puppet::Functions.create_function(:err, Puppet::Functions::InternalFunction) do
  # @param values The values to log.
  # @return [Undef]
  dispatch :err do
    scope_param
    repeated_param 'Any', :values
    return_type 'Undef'
  end

  def err(scope, *values)
    Puppet::Util::Log.log_func(scope, :err, values)
  end
end

Version data entries

447 entries across 447 versions & 2 rubygems

Version Path
puppet-7.34.0 lib/puppet/functions/err.rb
puppet-7.34.0-x86-mingw32 lib/puppet/functions/err.rb
puppet-7.34.0-x64-mingw32 lib/puppet/functions/err.rb
puppet-7.34.0-universal-darwin lib/puppet/functions/err.rb
puppet-7.33.0 lib/puppet/functions/err.rb
puppet-7.33.0-x86-mingw32 lib/puppet/functions/err.rb
puppet-7.33.0-x64-mingw32 lib/puppet/functions/err.rb
puppet-7.33.0-universal-darwin lib/puppet/functions/err.rb
puppet-7.32.1 lib/puppet/functions/err.rb
puppet-7.32.1-x86-mingw32 lib/puppet/functions/err.rb
puppet-7.32.1-x64-mingw32 lib/puppet/functions/err.rb
puppet-7.32.1-universal-darwin lib/puppet/functions/err.rb
puppet-7.31.0 lib/puppet/functions/err.rb
puppet-7.31.0-x86-mingw32 lib/puppet/functions/err.rb
puppet-7.31.0-x64-mingw32 lib/puppet/functions/err.rb
puppet-7.31.0-universal-darwin lib/puppet/functions/err.rb
puppet-7.30.0 lib/puppet/functions/err.rb
puppet-7.30.0-x86-mingw32 lib/puppet/functions/err.rb
puppet-7.30.0-x64-mingw32 lib/puppet/functions/err.rb
puppet-7.30.0-universal-darwin lib/puppet/functions/err.rb