Class: Innologix::Logger

Inherits:
Object
  • Object
show all
Defined in:
lib/innologix/logger.rb

Class Method Summary collapse

Class Method Details

.error(msg) ⇒ Object



11
12
13
# File 'lib/innologix/logger.rb', line 11

def self.error(msg)
  puts msg
end

.info(msg) ⇒ Object



3
4
5
# File 'lib/innologix/logger.rb', line 3

def self.info(msg)
  puts msg
end

.warn(msg) ⇒ Object



7
8
9
# File 'lib/innologix/logger.rb', line 7

def self.warn(msg)
  puts msg
end