method

warning_ignored?

warning_ignored?(warning)
private

No documentation available.

# File activerecord/lib/active_record/connection_adapters/postgresql/database_statements.rb, line 180
          def warning_ignored?(warning)
            ["WARNING", "ERROR", "FATAL", "PANIC"].exclude?(warning.level) || super
          end