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

Parameters:

  • _args

    Anything that we want to ignore

Returns:

  • (nil)


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

def debug(*_args)
  nil
end

#debug?FALSE

Returns:

  • (FALSE)


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

def debug?
  false
end

#error(*_args) ⇒ nil

Parameters:

  • _args

    Anything that we want to ignore

Returns:

  • (nil)


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

def error(*_args)
  nil
end

#error?FALSE

Returns:

  • (FALSE)


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

def error?
  false
end

#fatal(*_args) ⇒ nil

Parameters:

  • _args

    Anything that we want to ignore

Returns:

  • (nil)


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

def fatal(*_args)
  nil
end

#fatal?FALSE

Returns:

  • (FALSE)


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

def fatal?
  false
end

#info(*_args) ⇒ nil

Parameters:

  • _args

    Anything that we want to ignore

Returns:

  • (nil)


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

def info(*_args)
  nil
end

#info?FALSE

Returns:

  • (FALSE)


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

def info?
  false
end

#taggednil

Parameters:

  • _args

    Anything that we want to ignore

Returns:

  • (nil)


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

def tagged(*)
  yield if block_given?
end

#unknown(*_args) ⇒ nil

Parameters:

  • _args

    Anything that we want to ignore

Returns:

  • (nil)


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

def unknown(*_args)
  nil
end

#warn(*_args) ⇒ nil

Parameters:

  • _args

    Anything that we want to ignore

Returns:

  • (nil)


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

def warn(*_args)
  nil
end

#warn?FALSE

Returns:

  • (FALSE)


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

def warn?
  false
end