Index: modules/dblog/dblog.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/dblog/dblog.admin.inc,v
retrieving revision 1.5
diff -u -r1.5 dblog.admin.inc
--- modules/dblog/dblog.admin.inc	19 Dec 2007 17:45:42 -0000	1.5
+++ modules/dblog/dblog.admin.inc	20 Dec 2007 18:15:04 -0000
@@ -31,14 +31,24 @@
   $filter = dblog_build_filter_query();
   $rows = array();
   $icons = array(
-    WATCHDOG_NOTICE  => '',
-    WATCHDOG_WARNING => theme('image', 'misc/watchdog-warning.png', t('warning'), t('warning')),
-    WATCHDOG_ERROR   => theme('image', 'misc/watchdog-error.png', t('error'), t('error')),
+    WATCHDOG_DEBUG    => theme('image', 'misc/dblog-debug.png', t('debug'), t('debug')),
+    WATCHDOG_INFO     => theme('image', 'misc/dblog-info.png', t('info'), t('info')),
+    WATCHDOG_NOTICE   => theme('image', 'misc/dblog-notice.png', t('notice'), t('notice')),
+    WATCHDOG_WARNING  => theme('image', 'misc/dblog-warning.png', t('warning'), t('warning')),
+    WATCHDOG_ERROR    => theme('image', 'misc/dblog-error.png', t('error'), t('error')),
+    WATCHDOG_CRITICAL => theme('image', 'misc/dblog-critical.png', t('critical'), t('critical')),
+    WATCHDOG_ALERT    => theme('image', 'misc/dblog-alert.png', t('alert'), t('alert')),
+    WATCHDOG_EMERG    => theme('image', 'misc/dblog-emerg.png', t('emerg'), t('emerg'))
   );
   $classes = array(
-    WATCHDOG_NOTICE => 'dblog-notice',
-    WATCHDOG_WARNING => 'dblog-warning',
-    WATCHDOG_ERROR => 'dblog-error',
+    WATCHDOG_DEBUG    => 'dblog-debug',
+    WATCHDOG_INFO     => 'dblog-info',
+    WATCHDOG_NOTICE   => 'dblog-notice',
+    WATCHDOG_WARNING  => 'dblog-warning',
+    WATCHDOG_ERROR    => 'dblog-error',
+    WATCHDOG_CRITICAL => 'dblog-critical',
+    WATCHDOG_ALERT    => 'dblog-alert',
+    WATCHDOG_EMERG    => 'dblog-emerg'
   );

   $output = drupal_get_form('dblog_filter_form');
Index: modules/system/admin.css
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/admin.css,v
retrieving revision 1.17
diff -u -r1.17 admin.css
--- modules/system/admin.css	1 Sep 2007 05:27:04 -0000	1.17
+++ modules/system/admin.css	20 Dec 2007 18:15:04 -0000
@@ -74,13 +74,13 @@
   padding-bottom: 6px;
 }
 table.system-status-report tr.error th {
-  background-image: url(../../misc/watchdog-error.png);
+  background-image: url(../../misc/dblog-error.png);
 }
 table.system-status-report tr.warning th {
-  background-image: url(../../misc/watchdog-warning.png);
+  background-image: url(../../misc/dblog-warning.png);
 }
 table.system-status-report tr.ok th {
-  background-image: url(../../misc/watchdog-ok.png);
+  background-image: url(../../misc/dblog-ok.png);
 }

 /**
Index: modules/system/system.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.admin.inc,v
retrieving revision 1.42
diff -u -r1.42 system.admin.inc
--- modules/system/system.admin.inc	20 Dec 2007 09:35:10 -0000	1.42
+++ modules/system/system.admin.inc	20 Dec 2007 18:15:04 -0000
@@ -2047,12 +2047,12 @@
       $description = drupal_render($form['description'][$key]);
       if (isset($form['status']['#incompatible_modules_core'][$key])) {
         unset($form['status'][$key]);
-        $status = theme('image', 'misc/watchdog-error.png', t('incompatible'), t('Incompatible with this version of Drupal core'));
+        $status = theme('image', 'misc/dblog-error.png', t('incompatible'), t('Incompatible with this version of Drupal core'));
         $description .= '<div class="incompatible">'. t('This version is incompatible with the !core_version version of Drupal core.', array('!core_version' => VERSION)) .'</div>';
       }
       elseif (isset($form['status']['#incompatible_modules_php'][$key])) {
         unset($form['status'][$key]);
-        $status = theme('image', 'misc/watchdog-error.png', t('incompatible'), t('Incompatible with this version of PHP'));
+        $status = theme('image', 'misc/dblog-error.png', t('incompatible'), t('Incompatible with this version of PHP'));
         $php_required = $form['status']['#incompatible_modules_php'][$key];
         if (substr_count($php_required, '.') < 2) {
           $php_required .= '.*';
@@ -2177,12 +2177,12 @@
     // Make sure it is compatible and render the checkbox if so.
     if (isset($form['status']['#incompatible_themes_core'][$key])) {
       unset($form['status'][$key]);
-      $status = theme('image', 'misc/watchdog-error.png', t('incompatible'), t('Incompatible with this version of Drupal core'));
+      $status = theme('image', 'misc/dblog-error.png', t('incompatible'), t('Incompatible with this version of Drupal core'));
       $description .= '<div class="incompatible">'. t('This version is incompatible with the !core_version version of Drupal core.', array('!core_version' => VERSION)) .'</div>';
     }
     elseif (isset($form['status']['#incompatible_themes_php'][$key])) {
       unset($form['status'][$key]);
-      $status = theme('image', 'misc/watchdog-error.png', t('incompatible'), t('Incompatible with this version of PHP'));
+      $status = theme('image', 'misc/dblog-error.png', t('incompatible'), t('Incompatible with this version of PHP'));
       $php_required = $form['status']['#incompatible_themes_php'][$key];
       if (substr_count($php_required, '.') < 2) {
         $php_required .= '.*';
Index: modules/update/update.report.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/update/update.report.inc,v
retrieving revision 1.6
diff -u -r1.6 update.report.inc
--- modules/update/update.report.inc	20 Dec 2007 08:42:05 -0000	1.6
+++ modules/update/update.report.inc	20 Dec 2007 18:15:04 -0000
@@ -45,20 +45,20 @@
     switch ($project['status']) {
       case UPDATE_CURRENT:
         $class = 'ok';
-        $icon = theme('image', 'misc/watchdog-ok.png');
+        $icon = theme('image', 'misc/dblog-ok.png');
         break;
       case UPDATE_NOT_SECURE:
       case UPDATE_NOT_CURRENT:
         if ($notification_level == 'all'
             || $project['status'] == UPDATE_NOT_SECURE) {
           $class = 'error';
-          $icon = theme('image', 'misc/watchdog-error.png');
+          $icon = theme('image', 'misc/dblog-error.png');
           break;
         }
         // Otherwise, deliberate no break and use the warning class/icon.
       default:
         $class = 'warning';
-        $icon = theme('image', 'misc/watchdog-warning.png');
+        $icon = theme('image', 'misc/dblog-warning.png');
         break;
     }

Index: themes/garland/style-rtl.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/garland/style-rtl.css,v
retrieving revision 1.6
diff -u -r1.6 style-rtl.css
--- themes/garland/style-rtl.css	17 Dec 2007 15:05:10 -0000	1.6
+++ themes/garland/style-rtl.css	20 Dec 2007 18:15:04 -0000
@@ -64,7 +64,7 @@
 }

 ol.task-list li.done {
-  background: transparent url(../../misc/watchdog-ok.png) no-repeat 100% 50%;
+  background: transparent url(../../misc/dblog-ok.png) no-repeat 100% 50%;
 }

 ol.task-list li.active {
Index: themes/garland/style.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/garland/style.css,v
retrieving revision 1.34
diff -u -r1.34 style.css
--- themes/garland/style.css	17 Dec 2007 15:05:10 -0000	1.34
+++ themes/garland/style.css	20 Dec 2007 18:15:04 -0000
@@ -163,7 +163,7 @@
 }
 ol.task-list li.done {
   color: #393;
-  background: transparent url(../../misc/watchdog-ok.png) no-repeat 0px 50%; /* LTR */
+  background: transparent url(../../misc/dblog-ok.png) no-repeat 0px 50%; /* LTR */
 }
 ol.task-list li.active {
   margin-right: 1em; /* LTR */
