Sha256: bc747b285e8424b8f5cfa7e701520d80a63286dc70b12e0c1f864eb3da968b11
Contents?: true
Size: 718 Bytes
Versions: 3
Compression:
Stored size: 718 Bytes
Contents
# frozen_string_literal: true module Evostream module Commands # Returns a detailed set of information about a stream. class SetLogLevel < Command def initialize(commands = {}) super(commands) end def cmd "setLogLevel?params=#{encode_64}" end private # Change the log level for all log appenders. Default value in the # system is set in the config.lua file, which is usually set to 6. # # Log Levels: # 0 - Fatal # 1 - Error # 2 - Warning # 3 - Info # 4 - Debug # 5 - Fine # 6 - Finest def level(param = 'null') "level=#{param}" end end end end
Version data entries
3 entries across 3 versions & 1 rubygems