Class: ApiAdaptor::NullLogger

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

Instance Method Summary collapse

Instance Method Details

#debug(*_args) ⇒ nil

Parameters:

  • _args

    Anything that we want to ignore

Returns:

  • (nil)


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

def debug(*_args)
  nil
end

#debug?FALSE

Returns:

  • (FALSE)


90
91
92
# File 'lib/api_adaptor/null_logger.rb', line 90

def debug?
  false
end

#error(*_args) ⇒ nil

Parameters:

  • _args

    Anything that we want to ignore

Returns:

  • (nil)


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

def error(*_args)
  nil
end

#error?FALSE

Returns:

  • (FALSE)


57
58
59
# File 'lib/api_adaptor/null_logger.rb', line 57

def error?
  false
end

#fatal(*_args) ⇒ nil

Parameters:

  • _args

    Anything that we want to ignore

Returns:

  • (nil)


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

def fatal(*_args)
  nil
end

#fatal?FALSE

Returns:

  • (FALSE)


46
47
48
# File 'lib/api_adaptor/null_logger.rb', line 46

def fatal?
  false
end

#info(*_args) ⇒ nil

Parameters:

  • _args

    Anything that we want to ignore

Returns:

  • (nil)


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

def info(*_args)
  nil
end

#info?FALSE

Returns:

  • (FALSE)


79
80
81
# File 'lib/api_adaptor/null_logger.rb', line 79

def info?
  false
end

#unknown(*_args) ⇒ nil

Parameters:

  • _args

    Anything that we want to ignore

Returns:

  • (nil)


35
36
37
# File 'lib/api_adaptor/null_logger.rb', line 35

def unknown(*_args)
  nil
end

#warn(*_args) ⇒ nil

Parameters:

  • _args

    Anything that we want to ignore

Returns:

  • (nil)


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

def warn(*_args)
  nil
end

#warn?FALSE

Returns:

  • (FALSE)


68
69
70
# File 'lib/api_adaptor/null_logger.rb', line 68

def warn?
  false
end