<?php
// $Id: errorlog.install,v 1.1.2.2 2009/07/23 16:14:32 davereid Exp $

/**
 * @file
 * Install, update and uninstall functions for the errorlog module.
 */

/**
 * Implementation of hook_uninstall().
 */
function errorlog_uninstall() {
  $severities = array_keys(watchdog_severity_levels());
  foreach ($severities as $severity) {
    variable_del('errorlog_' . $severity);
  }
}
