watchdog_help

Versions
4.6
watchdog_help($section = 'admin/help#watchdog')
4.7 – 5
watchdog_help($section)

Implementation of hook_help().

Code

modules/watchdog.module, line 17

<?php
function watchdog_help($section = 'admin/help#watchdog') {
  switch ($section) {
    case 'admin/logs':
      return t('<p>The watchdog module monitors your web site, capturing system events in a log to be reviewed by an authorized individual at a later time.  The watchdog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information.  It is vital to check the watchdog report on a regular basis as it is often the only way to tell what is going on.</p>');
    case 'admin/modules#description':
      return t('Logs and records system events.');
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.