You are here

function raven_drush_help in Raven: Sentry Integration 7.3

Same name and namespace in other branches
  1. 7.4 raven.drush.inc \raven_drush_help()
  2. 7.2 raven.drush.inc \raven_drush_help()

Implements hook_drush_help().

File

./raven.drush.inc, line 31
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.');
  }
}