Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
# frozen_string_literal: true
# Logs a message on the server at level `debug`.
Puppet::Functions.create_function(:debug, Puppet::Functions::InternalFunction) do
# @param values The values to log.
# @return [Undef]
dispatch :debug do
scope_param
repeated_param 'Any', :values
return_type 'Undef'
end
def debug(scope, *values)
Puppet::Util::Log.log_func(scope, :debug, values)
end
end