err(msg)
click to toggle source
def err(msg)
@log.err("%s", msg)
end
info(msg)
click to toggle source
def info(msg)
@log.info("%s", msg)
end
warning(msg)
click to toggle source
write(string)
click to toggle source
def write(string)
@log.warning(string) if string.strip.length > 0
return string.chars.count
end