You are here

function logs_http_boot in Logs HTTP 7

Implements hook_boot().

Runs even for cached pages.

File

./logs_http.module, line 32
Logs HTTP module.

Code

function logs_http_boot() {
  drupal_register_shutdown_function('logs_http_shutdown');
  set_exception_handler('_logs_http_exception_handler');
}