Module: Niceql::ErrorExt
- Defined in:
- lib/niceql.rb
Instance Method Summary collapse
Instance Method Details
#to_s ⇒ Object
231 232 233 234 235 236 237 |
# File 'lib/niceql.rb', line 231 def to_s if Niceql.config.prettify_pg_errors && ActiveRecord::Base.connection_config['adapter'] == 'postgresql' Prettifier.prettify_err(super) else super end end |