class Android::Logger

Defined in:

log.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(tag : String) #

[View source]

Instance Method Detail

def assert(cond, fmt, *args) #

Log an assertion failure and SIGTRAP the process to have a change to inspect it, if a debugger is attached. This uses the FATAL priority.


[View source]
def debug(text) : Nil #

[View source]
def debug(fmt, *args) : Nil #

[View source]
def default(text) : Nil #

[View source]
def default(fmt, *args) : Nil #

[View source]
def error(text) : Nil #

[View source]
def error(fmt, *args) : Nil #

[View source]
def fatal(text) : Nil #

[View source]
def fatal(fmt, *args) : Nil #

[View source]
def info(text) : Nil #

[View source]
def info(fmt, *args) : Nil #

[View source]
def silent(text) : Nil #

[View source]
def silent(fmt, *args) : Nil #

[View source]
def tag : String #

[View source]
def tag=(tag : String) #

[View source]
def unknown(text) : Nil #

[View source]
def unknown(fmt, *args) : Nil #

[View source]
def verbose(text) : Nil #

[View source]
def verbose(fmt, *args) : Nil #

[View source]
def warn(text) : Nil #

[View source]
def warn(fmt, *args) : Nil #

[View source]