class DirectoryWatcher::NullLogger

This is the implementation of a logger that does nothing. It has all the debug, info, warn, error, fatal methods, but they do nothing

Public Instance Methods

debug( msg ) click to toggle source
# File lib/directory_watcher/logable.rb, line 6
def debug( msg ); end
error( msg ) click to toggle source
# File lib/directory_watcher/logable.rb, line 9
def error( msg ); end
fatal( msg ) click to toggle source
# File lib/directory_watcher/logable.rb, line 10
def fatal( msg ); end
info( msg ) click to toggle source
# File lib/directory_watcher/logable.rb, line 7
def info( msg );  end
warn( msg ) click to toggle source
# File lib/directory_watcher/logable.rb, line 8
def warn( msg );  end