module VCR::Logger::Null
@private A null-object version of the Logger
. Used when a `debug_logger` has not been set.
@note We used to use a null object for the `debug_logger` itself,
but some users noticed a negative perf impact from having the logger formatting logic still executing in that case, so we moved the null object interface up a layer to here.
Public Instance Methods
log(*)
click to toggle source
# File lib/vcr/util/logger.rb, line 37 def log(*); end
request_summary(*)
click to toggle source
# File lib/vcr/util/logger.rb, line 38 def request_summary(*); end
response_summary(*)
click to toggle source
# File lib/vcr/util/logger.rb, line 39 def response_summary(*); end