Sha256: 9f3d24c6fc11d96e13036f3f5baf683c7a7ee81686a04e300e7b3b92229643fc
Contents?: true
Size: 503 Bytes
Versions: 2
Compression:
Stored size: 503 Bytes
Contents
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module Contrast module Config # Common Configuration settings. Those in this section pertain to the # logging in the Agent. class LoggerConfiguration < BaseConfiguration KEYS = { path: EMPTY_VALUE, level: EMPTY_VALUE, progname: EMPTY_VALUE }.cs__freeze def initialize hsh super(hsh, KEYS) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
contrast-agent-5.1.0 | lib/contrast/config/logger_configuration.rb |
contrast-agent-5.0.0 | lib/contrast/config/logger_configuration.rb |