class Fluent::Log

Public Instance Methods

debug?() click to toggle source

Elasticsearch::Loggable does not request trace? method. def trace?

@level <= LEVEL_TRACE

end

# File lib/fluent/log-ext.rb, line 18
def debug?
  @level <= LEVEL_DEBUG
end
error?() click to toggle source
# File lib/fluent/log-ext.rb, line 30
def error?
  @level <= LEVEL_ERROR
end
fatal?() click to toggle source
# File lib/fluent/log-ext.rb, line 34
def fatal?
  @level <= LEVEL_FATAL
end
info?() click to toggle source
# File lib/fluent/log-ext.rb, line 22
def info?
  @level <= LEVEL_INFO
end
warn?() click to toggle source
# File lib/fluent/log-ext.rb, line 26
def warn?
  @level <= LEVEL_WARN
end