method
strict_loading_violation
v6.1.7.7 -
Show latest stable
- Class:
ActiveRecord::LogSubscriber
strict_loading_violation(event)public
No documentation available.
# File activerecord/lib/active_record/log_subscriber.rb, line 22
def strict_loading_violation(event)
debug do
owner = event.payload[:owner]
association = event.payload[:reflection].klass
name = event.payload[:reflection].name
color("Strict loading violation: #{owner} is marked for strict loading. The #{association} association named :#{name} cannot be lazily loaded.", RED)
end
end