Module: Bolt::Util::PuppetLogLevel

Defined in:
lib/bolt/util/puppet_log_level.rb

Constant Summary collapse

MAPPING =
{
  debug: :debug,
  info: :info,
  notice: :notice,
  warning: :warn,
  err: :error,
  # The following are used by Puppet functions of the same name, and are all treated as
  # error types in the Windows EventLog and log colors.
  alert: :error,
  emerg: :fatal,
  crit: :fatal
}.freeze