Class: EtCcdClient::NullLogger

Inherits:
Object
  • Object
show all
Defined in:
lib/et_ccd_client/null_logger.rb

Overview

silent.perform

Instance Method Summary collapse

Instance Method Details

#debug(*_args) ⇒ nil



91
92
93
# File 'lib/et_ccd_client/null_logger.rb', line 91

def debug(*_args)
  nil
end

#debug?FALSE



96
97
98
# File 'lib/et_ccd_client/null_logger.rb', line 96

def debug?
  false
end

#error(*_args) ⇒ nil



58
59
60
# File 'lib/et_ccd_client/null_logger.rb', line 58

def error(*_args)
  nil
end

#error?FALSE



63
64
65
# File 'lib/et_ccd_client/null_logger.rb', line 63

def error?
  false
end

#fatal(*_args) ⇒ nil



47
48
49
# File 'lib/et_ccd_client/null_logger.rb', line 47

def fatal(*_args)
  nil
end

#fatal?FALSE



52
53
54
# File 'lib/et_ccd_client/null_logger.rb', line 52

def fatal?
  false
end

#info(*_args) ⇒ nil



80
81
82
# File 'lib/et_ccd_client/null_logger.rb', line 80

def info(*_args)
  nil
end

#info?FALSE



85
86
87
# File 'lib/et_ccd_client/null_logger.rb', line 85

def info?
  false
end

#taggednil



36
37
38
# File 'lib/et_ccd_client/null_logger.rb', line 36

def tagged(*)
  yield if block_given?
end

#unknown(*_args) ⇒ nil



41
42
43
# File 'lib/et_ccd_client/null_logger.rb', line 41

def unknown(*_args)
  nil
end

#warn(*_args) ⇒ nil



69
70
71
# File 'lib/et_ccd_client/null_logger.rb', line 69

def warn(*_args)
  nil
end

#warn?FALSE



74
75
76
# File 'lib/et_ccd_client/null_logger.rb', line 74

def warn?
  false
end