This is the implementation of a logger that does nothing. It has all the debug, info, warn, error, fatal methods, but they do nothing
# File lib/directory_watcher/logable.rb, line 6 def debug( msg ); end
# File lib/directory_watcher/logable.rb, line 9 def error( msg ); end
# File lib/directory_watcher/logable.rb, line 10 def fatal( msg ); end
# File lib/directory_watcher/logable.rb, line 7 def info( msg ); end
# File lib/directory_watcher/logable.rb, line 8 def warn( msg ); end