Module: Centurion::Logging

Included in:
DockerServer, DockerServerGroup, DockerViaCli, Dogestry
Defined in:
lib/centurion/logging.rb

Instance Method Summary collapse

Instance Method Details

#debug(*args) ⇒ Object



19
20
21
# File 'lib/centurion/logging.rb', line 19

def debug(*args)
  log.debug args.join(' ')
end

#error(*args) ⇒ Object



15
16
17
# File 'lib/centurion/logging.rb', line 15

def error(*args)
  log.error args.join(' ')
end

#info(*args) ⇒ Object



7
8
9
# File 'lib/centurion/logging.rb', line 7

def info(*args)
  log.info args.join(' ')
end

#warn(*args) ⇒ Object



11
12
13
# File 'lib/centurion/logging.rb', line 11

def warn(*args)
  log.warn args.join(' ')
end