function raven_drush_help in Raven: Sentry Integration 7.4
Same name and namespace in other branches
- 7.2 raven.drush.inc \raven_drush_help()
- 7.3 raven.drush.inc \raven_drush_help()
Implements hook_drush_help().
File
- ./
raven.drush.inc, line 32 - Raven module drush integration.
Code
function raven_drush_help($section) {
switch ($section) {
case 'drush:raven-capture-message':
return dt('Sends a test message to Sentry.') . PHP_EOL . PHP_EOL . dt('Because messages are sent to Sentry asynchronously, there is no guarantee that the message was actually delivered successfully.');
}
}