3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# File 'lib/debug_logging/instance_logger_modulizer.rb', line 3
def self.to_mod(methods_to_log: nil, config_proxy: nil)
Module.new do
Array(methods_to_log).each do |method_to_log|
define_method(method_to_log.to_sym) do |*args, &block|
config_proxy = if config_proxy.is_a?(Hash)
Configuration.new(**(self.class.debug_config.to_hash.merge(config_proxy)))
else
self.class
end
method_return_value = nil
log_prefix = self.class.debug_invocation_to_s(klass: self.class.to_s, separator: "#", method_to_log: method_to_log, config_proxy: config_proxy)
signature = self.class.debug_signature_to_s(args: args, config_proxy: config_proxy)
invocation_id = self.class.debug_invocation_id_to_s(args: args, config_proxy: config_proxy)
self.class.debug_log "#{log_prefix}#{signature}#{invocation_id}"
if config_proxy.debug_instance_benchmarks
tms = Benchmark.measure do
method_return_value = super(*args, &block)
end
self.class.debug_log "#{log_prefix} #{self.class.debug_benchmark_to_s(tms: tms)}#{invocation_id}"
else
method_return_value = super(*args, &block)
end
method_return_value
end
end
end
end
|