Class: EksCli::Log

Inherits:
Object
  • Object
show all
Defined in:
lib/eks_cli/log.rb

Class Method Summary collapse

Class Method Details

.debug(str) ⇒ Object



12
13
14
# File 'lib/eks_cli/log.rb', line 12

def self.debug(str)
  self.logger.debug str
end

.error(str) ⇒ Object



8
9
10
# File 'lib/eks_cli/log.rb', line 8

def self.error(str)
  self.logger.error str
end

.info(str) ⇒ Object



4
5
6
# File 'lib/eks_cli/log.rb', line 4

def self.info(str)
  self.logger.info str
end

.warn(str) ⇒ Object



16
17
18
# File 'lib/eks_cli/log.rb', line 16

def self.warn(str)
  self.logger.warn str
end