Sha256: 2ea5d94f8d29a50d73438e658027c2fedaf1673872bc482a0187ba9be1a3798a
Contents?: true
Size: 564 Bytes
Versions: 63
Compression:
Stored size: 564 Bytes
Contents
# frozen_string_literal: true module Bolt module Util module PuppetLogLevel MAPPING = { # Demote Puppet's logs by one level, since Puppet is an implementation detail of Bolt debug: :trace, info: :debug, notice: :info, 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 end end end
Version data entries
63 entries across 63 versions & 1 rubygems