You are here

README.txt in Devel Debug Log 7

Description
===========
Devel Debug Log is a developer module that provides a way for developers to
save and display debug messages on a separate page in the web browser. It
serves as an alternative to using drupal_set_message() or watchdog() for
debugging, and a complementary module to Devel for those who find viewing
messages in the browser easier than looking for them, say, in a file.

The module provides the ddl($message) function, which the developer can use to
save a debug message. If an object or array is supplied as $message, it will be
displayed using the Krumo debugging tool. Messages can be viewed at
Reports > Debug Messages.

Installation
============
Standard module installation procedure. Copy the module to modules directory,
and enable.

Use the ddl($message) function in your code to send a debug message.

File

README.txt
View source
  1. Description
  2. ===========
  3. Devel Debug Log is a developer module that provides a way for developers to
  4. save and display debug messages on a separate page in the web browser. It
  5. serves as an alternative to using drupal_set_message() or watchdog() for
  6. debugging, and a complementary module to Devel for those who find viewing
  7. messages in the browser easier than looking for them, say, in a file.
  8. The module provides the ddl($message) function, which the developer can use to
  9. save a debug message. If an object or array is supplied as $message, it will be
  10. displayed using the Krumo debugging tool. Messages can be viewed at
  11. Reports > Debug Messages.
  12. Installation
  13. ============
  14. Standard module installation procedure. Copy the module to modules directory,
  15. and enable.
  16. Use the ddl($message) function in your code to send a debug message.