Method: Wait::BaseCounter#log

Defined in:
lib/counters/base.rb

#logObject

Logs the current attempt count.



33
34
35
36
37
# File 'lib/counters/base.rb', line 33

def log
  return if @logger.nil?

  @logger.debug("Counter") { "attempt #{self}" }
end