aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/CHANGELOG.md
diff options
context:
space:
mode:
authorDaniel Schierbeck <dasch@zendesk.com>2013-10-16 10:32:06 +0200
committerDaniel Schierbeck <dasch@zendesk.com>2013-10-20 15:21:15 +0200
commit8f0c5e00ff61cc2f61acedfb35de756bd0e95437 (patch)
tree05b7ace2d4938c8376cdc3580526e279f930f4b8 /actionmailer/CHANGELOG.md
parentcc8d14827d117ed7da7a17c4a057a8e5f71625ca (diff)
downloadrails-8f0c5e00ff61cc2f61acedfb35de756bd0e95437.tar.gz
rails-8f0c5e00ff61cc2f61acedfb35de756bd0e95437.tar.bz2
rails-8f0c5e00ff61cc2f61acedfb35de756bd0e95437.zip
Instrument the generation of Action Mailer messages
The processing of outbound mail is instrumented with the key `process.action_mailer`. The payload includes the mailer name as well as the mailer method.
Diffstat (limited to 'actionmailer/CHANGELOG.md')
-rw-r--r--actionmailer/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index 1659696bfb..d84b95e6e9 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -1,3 +1,8 @@
+* Instrument the generation of Action Mailer messages. The time it takes to
+ generate a message is written to the log.
+
+ *Daniel Schierbeck*
+
* invoke mailer defaults as procs only if they are procs, do not convert
with to_proc. That an object is convertible to a proc does not mean it's
meant to be always used as a proc. Fixes #11533