Module: MerbFootnotes::Instrumentation::DataMapper::Repository::Ext
- Defined in:
- lib/merb_footnotes/instrumentation.rb
Instance Method Summary collapse
- #delete(query) ⇒ Object
- #read_many(query) ⇒ Object
- #read_one(query) ⇒ Object
- #update(attributes, query) ⇒ Object
Instance Method Details
#delete(query) ⇒ Object
126 127 128 129 |
# File 'lib/merb_footnotes/instrumentation.rb', line 126 def delete(query) ::Merb.logger.info("LOGGING DELETE QUERY") super end |
#read_many(query) ⇒ Object
111 112 113 114 |
# File 'lib/merb_footnotes/instrumentation.rb', line 111 def read_many(query) ::Merb.logger.info("LOGGING READ MANY QUERY") super end |
#read_one(query) ⇒ Object
116 117 118 119 |
# File 'lib/merb_footnotes/instrumentation.rb', line 116 def read_one(query) ::Merb.logger.info("LOGGING READ ONE QUERY") super end |
#update(attributes, query) ⇒ Object
121 122 123 124 |
# File 'lib/merb_footnotes/instrumentation.rb', line 121 def update(attributes, query) ::Merb.logger.info("LOGGING UPDATE QUERY") super end |