module Albacore::Logging

Public Instance Methods

debug(*str, &block) click to toggle source
# File lib/albacore/logging.rb, line 10
def debug *str, &block
  ::Albacore.application.logger.debug *str, &block
end
err(str) click to toggle source
# File lib/albacore/logging.rb, line 28
def err str
  ::Albacore.application.err str
end
error(*str, &block) click to toggle source
# File lib/albacore/logging.rb, line 19
def error *str, &block
  ::Albacore.application.logger.error *str, &block
end
fatal(*str, &block) click to toggle source
# File lib/albacore/logging.rb, line 22
def fatal *str, &block
  ::Albacore.application.logger.fatal *str, &block
end
info(*str, &block) click to toggle source
# File lib/albacore/logging.rb, line 13
def info *str, &block
  ::Albacore.application.logger.info *str, &block
end
puts(*str) click to toggle source
# File lib/albacore/logging.rb, line 25
def puts *str
  ::Albacore.application.puts *str
end
trace(*str, &block) click to toggle source
# File lib/albacore/logging.rb, line 7
def trace *str, &block
  ::Albacore.application.logger.debug *str, &block
end
warn(*str, &block) click to toggle source
# File lib/albacore/logging.rb, line 16
def warn *str, &block
  ::Albacore.application.logger.warn *str, &block
end