Class: Util::Logging::LogConfigs

Inherits:
Object
  • Object
show all
Defined in:
lib/util/logging.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(l_format, l_level) ⇒ LogConfigs

Returns a new instance of LogConfigs.



74
75
76
77
# File 'lib/util/logging.rb', line 74

def initialize(l_format, l_level)
  @@log_format = l_format
  @@log_level = l_level
end

Class Method Details

.log_formatObject



79
80
81
# File 'lib/util/logging.rb', line 79

def self.log_format
  @@log_format
end

.log_levelObject



87
88
89
# File 'lib/util/logging.rb', line 87

def self.log_level
  @@log_level
end

Instance Method Details

#log_formatObject



83
84
85
# File 'lib/util/logging.rb', line 83

def log_format
  @@log_format
end

#log_levelObject



91
92
93
# File 'lib/util/logging.rb', line 91

def log_level
  @@log_level
end