class Lumberjack::Device::Null

This is a logging device that produces no output. It can be useful in testing environments when log file output is not useful.

Public Class Methods

new(*args) click to toggle source
# File lib/lumberjack/device/null.rb, line 10
def initialize(*args)
end

Public Instance Methods

write(entry) click to toggle source
# File lib/lumberjack/device/null.rb, line 13
def write(entry)
end