class Cassandra::NullLogger

@private

Public Instance Methods

close(*) click to toggle source
   # File lib/cassandra/null_logger.rb
22 def close(*); end
debug(*) click to toggle source
   # File lib/cassandra/null_logger.rb
24 def debug(*); end
debug?() click to toggle source
   # File lib/cassandra/null_logger.rb
26 def debug?
27   false
28 end
error(*) click to toggle source
   # File lib/cassandra/null_logger.rb
30 def error(*); end
error?() click to toggle source
   # File lib/cassandra/null_logger.rb
32 def error?
33   false
34 end
fatal(*) click to toggle source
   # File lib/cassandra/null_logger.rb
36 def fatal(*); end
fatal?() click to toggle source
   # File lib/cassandra/null_logger.rb
38 def fatal?
39   false
40 end
info(*) click to toggle source
   # File lib/cassandra/null_logger.rb
42 def info(*); end
info?() click to toggle source
   # File lib/cassandra/null_logger.rb
44 def info?
45   false
46 end
unknown(*) click to toggle source
   # File lib/cassandra/null_logger.rb
48 def unknown(*); end
warn(*) click to toggle source
   # File lib/cassandra/null_logger.rb
50 def warn(*); end
warn?() click to toggle source
   # File lib/cassandra/null_logger.rb
52 def warn?
53   false
54 end