Class: CustomLogger

Inherits:
Object
  • Object
show all
Defined in:
lib/tests/logger_test.rb

Class Method Summary collapse

Class Method Details

.critical(message:, **options, &block) ⇒ Object



13
# File 'lib/tests/logger_test.rb', line 13

def critical(message:, **options, &block); end

.debug(object:, **options, &block) ⇒ Object



15
# File 'lib/tests/logger_test.rb', line 15

def debug(object:, **options, &block); end

.error(message:, **options, &block) ⇒ Object



11
# File 'lib/tests/logger_test.rb', line 11

def error(message:, **options, &block); end

.info(message:, **options, &block) ⇒ Object



7
8
9
# File 'lib/tests/logger_test.rb', line 7

def info(message:, **options, &block)
  puts "CUSTOM INFO #{message}"
end

.warn(message:, **options, &block) ⇒ Object



5
# File 'lib/tests/logger_test.rb', line 5

def warn(message:, **options, &block); end