Answers:
您可以使用drush执行此操作:
$ drush help | grep watchdog
watchdog-delete Delete watchdog messages.
watchdog-list Show available message types and severity levels. A
(wd-list) prompt will ask for a choice to show watchdog messages.
watchdog-show Show watchdog messages.
drush watchdog-show
这里有太多选项无法完整显示,但这些是示例:
drush watchdog-show Show a listing of most recent 10
messages.
drush watchdog-show 64 Show in detail message with id 64.
drush watchdog-show "cron run succesful" Show a listing of most recent 10
messages containing the string "cron
run succesful".
drush watchdog-show --count=46 Show a listing of most recent 46
messages.
drush watchdog-show --severity=notice Show a listing of most recent 10
messages with a severity of notice.
drush watchdog-show --type=php Show a listing of most recent 10
messages of type php.
drush watchdog-show --tail --full Show a listing of most recent 10
messages with extended information
about each one and continue showing
messages as they are registered in
the watchdog.
drush watchdog-show --tail Do a tail of the watchdog with a
--sleep-delay=2 delay of two seconds between each
poll to the database.
drush watchdog-show --tail --full --count=50
,我现在正在使用的是:)
您必须启用Syslog模块,并且该日志将在/var/log/drupal.log中可用。有关更多信息,您可以阅读Syslog:OS集成日志。